13 overrides of FlushAsync
mscorlib (6)
system\io\bufferedstream.cs (1)
332public override Task FlushAsync(CancellationToken cancellationToken) {
system\io\filestream.cs (1)
2828public override Task FlushAsync(CancellationToken cancellationToken)
system\io\memorystream.cs (1)
196public override Task FlushAsync(CancellationToken cancellationToken) {
system\io\stream.cs (1)
897public override Task FlushAsync(CancellationToken cancellationToken)
system\io\unmanagedmemorystream.cs (1)
292public override Task FlushAsync(CancellationToken cancellationToken) {
system\security\cryptography\cryptostream.cs (1)
156public override Task FlushAsync(CancellationToken cancellationToken)
System (7)
net\System\Net\_ConnectStream.cs (1)
2761public override Task FlushAsync(CancellationToken cancellationToken)
net\System\Net\_ListenerRequestStream.cs (1)
77public override Task FlushAsync(CancellationToken cancellationToken)
net\System\Net\_ListenerResponseStream.cs (1)
85public override Task FlushAsync(CancellationToken cancellationToken)
net\System\Net\_PooledStream.cs (1)
784public override Task FlushAsync(CancellationToken cancellationToken)
net\System\Net\mail\DelegatedStream.cs (1)
153public override Task FlushAsync(CancellationToken cancellationToken)
net\System\Net\Sockets\NetworkStream.cs (1)
1256public override Task FlushAsync(CancellationToken cancellationToken)
net\System\Net\WebSockets\WebSocketHttpListenerDuplexStream.cs (1)
597public override Task FlushAsync(CancellationToken cancellationToken)
7 references to FlushAsync
mscorlib (6)
system\io\bufferedstream.cs (3)
377await stream.FlushAsync(cancellationToken).ConfigureAwait(false); 385await stream.FlushAsync(cancellationToken).ConfigureAwait(false); 461await _stream.FlushAsync(cancellationToken).ConfigureAwait(false);
system\io\filestream.cs (1)
2835return base.FlushAsync(cancellationToken);
system\io\stream.cs (1)
278return FlushAsync(CancellationToken.None);
system\security\cryptography\cryptostream.cs (1)
163return base.FlushAsync(cancellationToken);
System (1)
net\System\Net\mail\DelegatedStream.cs (1)
155return this.stream.FlushAsync(cancellationToken);