C# Класс Simplify.Web.Core.ResponseWriter

Providers response writer
Наследование: IResponseWriter
Показать файл Открыть проект

Открытые методы

Метод Описание
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