MemoryStream.FlushAsync Method (CancellationToken)
.NET Framework (current version)
Asynchronously clears all buffers for this stream, and monitors cancellation requests.
Assembly: mscorlib (in mscorlib.dll)
[<ComVisibleAttribute(false)>] [<HostProtectionAttribute(SecurityAction.LinkDemand, ExternalThreading = true)>] override FlushAsync : cancellationToken:CancellationToken -> Task
Parameters
- cancellationToken
-
Type:
System.Threading.CancellationToken
The token to monitor for cancellation requests.
Return Value
Type: System.Threading.Tasks.TaskA task that represents the asynchronous flush operation.
| Exception | Condition |
|---|---|
| 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.
Universal Windows Platform
Available since 8
.NET Framework
Available since 4.5
Portable Class Library
Supported in: portable .NET platforms
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 4.5
Portable Class Library
Supported in: portable .NET platforms
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Show: