C# Класс Microsoft.AspNetCore.SignalR.ResponseExtensions

Показать файл Открыть проект

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

Метод Описание
End ( this response, string data ) : System.Threading.Tasks.Task

Set the entire response body to data. This method does not support writing to a response that has already been written to since it sets HttpResponse.ContentLength.

Flush ( this response ) : System.Threading.Tasks.Task
Write ( this response, ArraySegment data ) : void

Описание методов

End() публичный статический Метод

Set the entire response body to data. This method does not support writing to a response that has already been written to since it sets HttpResponse.ContentLength.
public static End ( this response, string data ) : System.Threading.Tasks.Task
response this
data string
Результат System.Threading.Tasks.Task

Flush() публичный статический Метод

public static Flush ( this response ) : System.Threading.Tasks.Task
response this
Результат System.Threading.Tasks.Task

Write() публичный статический Метод

public static Write ( this response, ArraySegment data ) : void
response this
data ArraySegment
Результат void