|
| DeflateStream (Stream stream, CompressionMode mode) |
|
override int | Read (byte[] array, int offset, int count) |
|
override void | Write (byte[] array, int offset, int count) |
|
override void | Flush () |
|
override IAsyncResult | BeginRead (byte[] array, int offset, int count, AsyncCallback asyncCallback, object asyncState) |
|
override IAsyncResult | BeginWrite (byte[] array, int offset, int count, AsyncCallback asyncCallback, object asyncState) |
|
override int | EndRead (IAsyncResult asyncResult) |
|
override void | EndWrite (IAsyncResult asyncResult) |
|
override long | Seek (long offset, SeekOrigin origin) |
|
override void | SetLength (long value) |
|
void | CopyTo (Stream destination) |
|
virtual void | CopyTo (Stream destination, int bufferSize) |
|
virtual void | Close () |
|
void | Dispose () |
|
virtual Task | FlushAsync (CancellationToken cancellationToken) |
|
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, [Optional] CancellationToken cancellationToken) |
|
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, [Optional] CancellationToken cancellationToken) |
|
virtual int | Read (Span< byte > buffer) |
|
virtual int | ReadByte () |
|
virtual void | Write (ReadOnlySpan< byte > buffer) |
|
virtual void | WriteByte (byte value) |
|
virtual ObjRef | CreateObjRef (Type requestedType) |
|
virtual object | InitializeLifetimeService () |
|
|
| DeflateStream (Stream stream, CompressionMode mode, bool leaveOpen, int windowsBits) |
|
| DeflateStream (Stream compressedStream, CompressionMode mode, bool leaveOpen, bool gzip) |
|
ValueTask< int > | ReadAsyncMemory (Memory< byte > destination, CancellationToken cancellationToken) |
|
int | ReadCore (Span< byte > destination) |
|
ValueTask | WriteAsyncMemory (ReadOnlyMemory< byte > source, CancellationToken cancellationToken) |
|
void | WriteCore (ReadOnlySpan< byte > source) |
|
SemaphoreSlim | EnsureAsyncActiveSemaphoreInitialized () |
|
IAsyncResult | BeginReadInternal (byte[] buffer, int offset, int count, AsyncCallback callback, object state, bool serializeAsynchronously, bool apm) |
|
IAsyncResult | BeginWriteInternal (byte[] buffer, int offset, int count, AsyncCallback callback, object state, bool serializeAsynchronously, bool apm) |
|
IAsyncResult | BlockingBeginRead (byte[] buffer, int offset, int count, AsyncCallback callback, object state) |
|
IAsyncResult | BlockingBeginWrite (byte[] buffer, int offset, int count, AsyncCallback callback, object state) |
|
Definition at line 9 of file DeflateStream.cs.