FlushAsync Method (CancellationToken)
Collapse the table of content
Expand the table of content

MemoryStream.FlushAsync Method (CancellationToken)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Asynchronously clears all buffers for this stream, and monitors cancellation requests.

Namespace:  System.IO
Assembly:  mscorlib (in mscorlib.dll)

public override Task FlushAsync(
	CancellationToken cancellationToken
)

Parameters

cancellationToken
Type: System.Threading.CancellationToken
The token to monitor for cancellation requests.

Return Value

Type: System.Threading.Tasks.Task
A task that represents the asynchronous flush operation.

ExceptionCondition
ObjectDisposedException

The stream has been disposed.

Because any data written to a MemoryStream object is written into RAM, this method is redundant.

If the operation is canceled before it completes, the returned task contains the Canceled value for the Status property.

You can create a cancellation token by creating an instance of the CancellationTokenSource class and passing the Token property as the cancellationToken parameter.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft