C# 클래스 Simplify.Web.Core.ResponseWriter

Providers response writer
상속: IResponseWriter
파일 보기 프로젝트 열기: i4004/Simplify.Web

공개 메소드들

메소드 설명
Write ( byte data, IOwinResponse response ) : void

Writes the specified data.

Write ( string data, IOwinResponse response ) : void

Writes the specified data.

WriteAsync ( byte data, IOwinResponse response ) : System.Threading.Tasks.Task

Writes the specified data asynchronously.

WriteAsync ( string data, IOwinResponse response ) : System.Threading.Tasks.Task

Writes the specified data asynchronously.

메소드 상세

Write() 공개 메소드

Writes the specified data.
public Write ( byte data, IOwinResponse response ) : void
data byte The data.
response IOwinResponse The response.
리턴 void

Write() 공개 메소드

Writes the specified data.
public Write ( string data, IOwinResponse response ) : void
data string The data.
response IOwinResponse The response.
리턴 void

WriteAsync() 공개 메소드

Writes the specified data asynchronously.
public WriteAsync ( byte data, IOwinResponse response ) : System.Threading.Tasks.Task
data byte The data.
response IOwinResponse The response.
리턴 System.Threading.Tasks.Task

WriteAsync() 공개 메소드

Writes the specified data asynchronously.
public WriteAsync ( string data, IOwinResponse response ) : System.Threading.Tasks.Task
data string The data.
response IOwinResponse The response.
리턴 System.Threading.Tasks.Task