次の方法で共有


HttpResponseStreamWriter.WriteLineAsync メソッド

定義

オーバーロード

WriteLineAsync(Char)

ソース:
HttpResponseStreamWriter.cs
ソース:
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)

ソース:
HttpResponseStreamWriter.cs
ソース:
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)

ソース:
HttpResponseStreamWriter.cs
ソース:
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)

ソース:
HttpResponseStreamWriter.cs
ソース:
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

戻り値

適用対象