IndentedTextWriterWriteLineAsync(Char, Int32, Int32) - метод

Asynchronously writes a subarray of characters to the text stream, followed by a line terminator.

Definition

Пространство имён: Tessa.Platform.IO
Сборка: Tessa (в Tessa.dll) Версия: 4.0.4
C#
public override Task WriteLineAsync(
	char[] buffer,
	int index,
	int count
)

Параметры

buffer  Char
The character array to write data from.
index  Int32
The character position in the buffer at which to start retrieving data.
count  Int32
The number of characters to write.

Возвращаемое значение

Task
A task that represents the asynchronous write operation.

Исключения

ArgumentNullExceptionbuffer is .
ArgumentExceptionThe index plus count is greater than the buffer length.
ArgumentOutOfRangeExceptionindex or count is negative.
ObjectDisposedExceptionThe text writer is disposed.
InvalidOperationExceptionThe text writer is currently in use by a previous write operation.

См. также