C# 클래스 Microsoft.AspNetCore.SignalR.ResponseExtensions

파일 보기 프로젝트 열기: FabianGosebrink/ASPNET-Core-Angular2-SignalR-Typescript

공개 메소드들

메소드 설명
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