Sdílet prostřednictvím


HttpResponseStreamWriter.WriteLineAsync Metoda

Definice

Přetížení

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

WriteLineAsync(Char)

Zdroj:
HttpResponseStreamWriter.cs

Asynchronně zapíše znak do textového streamu následovaný ukončovacím znakem řádku.

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

Parametry

value
Char

Návraty

Platí pro

WriteLineAsync(String)

Zdroj:
HttpResponseStreamWriter.cs

Asynchronně zapíše řetězec do textového streamu následovaný ukončovacím znakem řádku.

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

Parametry

value
String

Návraty

Platí pro

WriteLineAsync(ReadOnlyMemory<Char>, CancellationToken)

Zdroj:
HttpResponseStreamWriter.cs

Asynchronně zapíše textovou reprezentaci oblasti znakové paměti do textového streamu následovaný ukončovacím znakem.

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

Parametry

cancellationToken
CancellationToken

Návraty

Platí pro

WriteLineAsync(Char[], Int32, Int32)

Zdroj:
HttpResponseStreamWriter.cs

Asynchronně zapíše dílčí pole znaků do textového streamu následované ukončovacím znakem řádku.

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

Parametry

values
Char[]
index
Int32
count
Int32

Návraty

Platí pro