CsvWriterWriteAsync(String) - метод
Asynchronously writes a string to the stream.
Пространство имён: Tessa.Platform.IOСборка: Tessa (в Tessa.dll) Версия: 3.6.0.22
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 to the stream. If value is , nothing is written.
TaskA task that represents the asynchronous write operation.
ObjectDisposedException | The stream writer is disposed. |
InvalidOperationException | The stream writer is currently in use by a previous write operation. |