IndentedTextWriterWriteLineAsync(String) - метод
Asynchronously writes a string to the text stream, followed by a line terminator.
Пространство имён: Tessa.Platform.IOСборка: Tessa (в Tessa.dll) Версия: 4.0.4
public override Task WriteLineAsync(
string? value
)
Public Overrides Function WriteLineAsync (
value As String
) As Task
public:
virtual Task^ WriteLineAsync(
String^ value
) override
abstract WriteLineAsync :
value : string -> Task
override WriteLineAsync :
value : string -> Task
- value String
- The string to write. If the value is , only a line terminator is written.
TaskA task that represents the asynchronous write operation.
ObjectDisposedException | The text writer is disposed. |
InvalidOperationException | The text writer is currently in use by a previous write operation. |