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