|
| | UnmanagedMemoryStream (SafeBuffer buffer, long offset, long length) |
| |
| | UnmanagedMemoryStream (SafeBuffer buffer, long offset, long length, FileAccess access) |
| |
| unsafe | UnmanagedMemoryStream (byte *pointer, long length) |
| |
| unsafe | UnmanagedMemoryStream (byte *pointer, long length, long capacity, FileAccess access) |
| |
| override void | Flush () |
| |
| override Task | FlushAsync (CancellationToken cancellationToken) |
| |
| override int | Read (byte[] buffer, int offset, int count) |
| |
| override int | Read (Span< byte > buffer) |
| |
| override Task< int > | ReadAsync (byte[] buffer, int offset, int count, CancellationToken cancellationToken) |
| |
| override ValueTask< int > | ReadAsync (Memory< byte > buffer, CancellationToken cancellationToken=default(CancellationToken)) |
| |
| unsafe override int | ReadByte () |
| |
| override long | Seek (long offset, SeekOrigin loc) |
| |
| unsafe override void | SetLength (long value) |
| |
| override void | Write (byte[] buffer, int offset, int count) |
| |
| override void | Write (ReadOnlySpan< byte > buffer) |
| |
| override Task | WriteAsync (byte[] buffer, int offset, int count, CancellationToken cancellationToken) |
| |
| override ValueTask | WriteAsync (ReadOnlyMemory< byte > buffer, CancellationToken cancellationToken=default(CancellationToken)) |
| |
| unsafe override void | WriteByte (byte value) |
| |
| 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 () |
| |
| Task | FlushAsync () |
| |
| 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 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) |
| |
| object | GetLifetimeService () |
| |
| virtual object | InitializeLifetimeService () |
| |
Definition at line 7 of file UnmanagedMemoryStream.cs.