|
void | CopyTo (Stream destination) |
|
virtual void | CopyTo (Stream destination, int bufferSize) |
|
Task | CopyToAsync (Stream destination) |
|
Task | CopyToAsync (Stream destination, int bufferSize) |
|
Task | CopyToAsync (Stream destination, CancellationToken cancellationToken) |
|
virtual Task | CopyToAsync (Stream destination, int bufferSize, CancellationToken cancellationToken) |
|
void | Dispose () |
|
virtual void | Close () |
|
virtual ValueTask | DisposeAsync () |
|
void | Flush () |
|
Task | FlushAsync () |
|
virtual Task | FlushAsync (CancellationToken cancellationToken) |
|
virtual IAsyncResult | BeginRead (byte[] buffer, int offset, int count, AsyncCallback? callback, object? state) |
|
virtual int | EndRead (IAsyncResult asyncResult) |
|
Task< int > | ReadAsync (byte[] buffer, int offset, int count) |
|
virtual Task< int > | ReadAsync (byte[] buffer, int offset, int count, CancellationToken cancellationToken) |
|
virtual ValueTask< int > | ReadAsync (Memory< byte > buffer, CancellationToken cancellationToken=default(CancellationToken)) |
|
virtual IAsyncResult | BeginWrite (byte[] buffer, int offset, int count, AsyncCallback? callback, object? state) |
|
virtual void | EndWrite (IAsyncResult asyncResult) |
|
Task | WriteAsync (byte[] buffer, int offset, int count) |
|
virtual Task | WriteAsync (byte[] buffer, int offset, int count, CancellationToken cancellationToken) |
|
virtual ValueTask | WriteAsync (ReadOnlyMemory< byte > buffer, CancellationToken cancellationToken=default(CancellationToken)) |
|
long | Seek (long offset, SeekOrigin origin) |
|
void | SetLength (long value) |
|
int | Read (byte[] buffer, int offset, int count) |
|
virtual int | Read (Span< byte > buffer) |
|
virtual int | ReadByte () |
|
void | Write (byte[] buffer, int offset, int count) |
|
virtual void | Write (ReadOnlySpan< byte > buffer) |
|
virtual void | WriteByte (byte value) |
|
object | GetLifetimeService () |
|
virtual object | InitializeLifetimeService () |
|
Definition at line 10 of file Stream.cs.