다음을 통해 공유


HttpResponseStreamWriter.WriteLineAsync 메서드

정의

오버로드

WriteLineAsync(Char)
WriteLineAsync(String)
WriteLineAsync(ReadOnlyMemory<Char>, CancellationToken)
WriteLineAsync(Char[], Int32, Int32)

WriteLineAsync(Char)

Source:
HttpResponseStreamWriter.cs

텍스트 스트림에 줄 종결자가 다음에 오도록 비동기식으로 문자를 씁니다.

public override System.Threading.Tasks.Task WriteLineAsync (char value);
override this.WriteLineAsync : char -> System.Threading.Tasks.Task
Public Overrides Function WriteLineAsync (value As Char) As Task

매개 변수

value
Char

반환

적용 대상

WriteLineAsync(String)

Source:
HttpResponseStreamWriter.cs

문자열과 줄 종결자를 차례로 텍스트 스트림에 비동기식으로 씁니다.

public override System.Threading.Tasks.Task WriteLineAsync (string? value);
override this.WriteLineAsync : string -> System.Threading.Tasks.Task
Public Overrides Function WriteLineAsync (value As String) As Task

매개 변수

value
String

반환

적용 대상

WriteLineAsync(ReadOnlyMemory<Char>, CancellationToken)

Source:
HttpResponseStreamWriter.cs

텍스트 스트림에 줄 종결자가 다음에 오도록 문자 메모리 범위의 텍스트 표현을 비동기식으로 씁니다.

public override System.Threading.Tasks.Task WriteLineAsync (ReadOnlyMemory<char> value, System.Threading.CancellationToken cancellationToken = default);
override this.WriteLineAsync : ReadOnlyMemory<char> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overrides Function WriteLineAsync (value As ReadOnlyMemory(Of Char), Optional cancellationToken As CancellationToken = Nothing) As Task

매개 변수

cancellationToken
CancellationToken

반환

적용 대상

WriteLineAsync(Char[], Int32, Int32)

Source:
HttpResponseStreamWriter.cs

문자의 하위 배열과 줄 종결자를 차례로 텍스트 스트림에 비동기식으로 씁니다.

public override System.Threading.Tasks.Task WriteLineAsync (char[] values, int index, int count);
override this.WriteLineAsync : char[] * int * int -> System.Threading.Tasks.Task
Public Overrides Function WriteLineAsync (values As Char(), index As Integer, count As Integer) As Task

매개 변수

values
Char[]
index
Int32
count
Int32

반환

적용 대상