C# Class Simplify.Web.Core.ResponseWriter

Providers response writer
Inheritance: IResponseWriter
Show file Open project: i4004/Simplify.Web

Public Methods

Method Description
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.

Method Details

Write() public method

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

Write() public method

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

WriteAsync() public method

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

WriteAsync() public method

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