Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

UnmanagedMemoryStream::FlushAsync Method (CancellationToken)

 

Overrides the Stream::FlushAsync method so that the operation is cancelled if specified, but no other action is performed.

Available starting in .NET Framework 4.6

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

public:
[ComVisibleAttribute(false)]
[HostProtectionAttribute(SecurityAction::LinkDemand, ExternalThreading = true)]
virtual Task^ FlushAsync(
	CancellationToken cancellationToken
) override

Parameters

cancellationToken
Type: System.Threading::CancellationToken

The token to monitor for cancellation requests. The default value is None.

Return Value

Type: System.Threading.Tasks::Task^

A task that represents the asynchronous flush operation.

If the operation isn’t cancelled, the UnmanagedMemoryStream calls the Flush method, which means that no action performed.

Universal Windows Platform
Available since 10
.NET Framework
Available since 4.5.2
Return to top
Show:
© 2017 Microsoft