C# Class Simplify.Web.Core.ResponseWriter

Providers response writer
Inheritance: IResponseWriter
Afficher le fichier Open project: i4004/Simplify.Web

Méthodes publiques

Méthode 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 méthode

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

Write() public méthode

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

WriteAsync() public méthode

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

WriteAsync() public méthode

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