Прочитај на енглеском Уреди

Делите путем


IndentedTextWriter.FlushAsync Method

Definition

Overloads

FlushAsync()

Clears all buffers for this IndentedTextWriter asynchronously and causes any buffered data to be written to the underlying device.

FlushAsync(CancellationToken)

Clears all buffers for this IndentedTextWriter asynchronously and causes any buffered data to be written to the underlying device.

FlushAsync()

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

Clears all buffers for this IndentedTextWriter asynchronously and causes any buffered data to be written to the underlying device.

C#
public override System.Threading.Tasks.Task FlushAsync();

Returns

A Task representing the asynchronous flush operation.

Remarks

This method stores in the task it returns all non-usage exceptions that the method's synchronous counterpart can throw. If an exception is stored into the returned task, that exception will be thrown when the task is awaited. Usage exceptions, such as ArgumentException, are still thrown synchronously. For the stored exceptions, see the exceptions thrown by Flush().

Applies to

.NET 10 и друге верзије
Производ Верзије
.NET 6, 7, 8, 9, 10

FlushAsync(CancellationToken)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

Clears all buffers for this IndentedTextWriter asynchronously and causes any buffered data to be written to the underlying device.

C#
public override System.Threading.Tasks.Task FlushAsync(System.Threading.CancellationToken cancellationToken);

Parameters

cancellationToken
CancellationToken

The CancellationToken to monitor for cancellation requests.

Returns

A Task representing the asynchronous flush operation.

Exceptions

The cancellation token was canceled. This exception is stored into the returned task.

Applies to

.NET 10 и друге верзије
Производ Верзије
.NET 8, 9, 10