IndentedTextWriterWriteAsync(String) - метод
Writes a string to the text stream asynchronously.
Пространство имён: Tessa.Platform.IOСборка: Tessa (в Tessa.dll) Версия: 4.0.4
public override Task WriteAsync(
string? value
)
Public Overrides Function WriteAsync (
value As String
) As Task
public:
virtual Task^ WriteAsync(
String^ value
) override
abstract WriteAsync :
value : string -> Task
override WriteAsync :
value : string -> Task
- value String
- The string to write. If value is , nothing is written to the text stream.
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. |