|
| AnonymousPipeServerStream () |
|
| AnonymousPipeServerStream (PipeDirection direction) |
|
| AnonymousPipeServerStream (PipeDirection direction, HandleInheritability inheritability) |
|
| AnonymousPipeServerStream (PipeDirection direction, SafePipeHandle serverSafePipeHandle, SafePipeHandle clientSafePipeHandle) |
|
| AnonymousPipeServerStream (PipeDirection direction, HandleInheritability inheritability, int bufferSize) |
|
string | GetClientHandleAsString () |
|
void | DisposeLocalCopyOfClientHandle () |
|
unsafe override int | ReadByte () |
|
unsafe override void | WriteByte (byte value) |
|
override void | Flush () |
|
override Task | FlushAsync (CancellationToken cancellationToken) |
|
Task | FlushAsync () |
|
void | Dispose () |
|
override void | SetLength (long value) |
|
override long | Seek (long offset, SeekOrigin origin) |
|
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)) |
|
Task< int > | ReadAsync (byte[] buffer, int offset, int count) |
|
override IAsyncResult | BeginRead (byte[] buffer, int offset, int count, AsyncCallback? callback, object? state) |
|
override int | EndRead (IAsyncResult asyncResult) |
|
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)) |
|
Task | WriteAsync (byte[] buffer, int offset, int count) |
|
override IAsyncResult | BeginWrite (byte[] buffer, int offset, int count, AsyncCallback? callback, object? state) |
|
override void | EndWrite (IAsyncResult asyncResult) |
|
void | WaitForPipeDrain () |
|
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) |
|
virtual void | Close () |
|
virtual ValueTask | DisposeAsync () |
|
object | GetLifetimeService () |
|
virtual object | InitializeLifetimeService () |
|
|
| ~AnonymousPipeServerStream () |
|
void | Create (PipeDirection direction, HandleInheritability inheritability, int bufferSize) |
|
void | Create (PipeDirection direction, HandleInheritability inheritability, int bufferSize, PipeSecurity pipeSecurity) |
|
void | Init (PipeDirection direction, PipeTransmissionMode transmissionMode, uint outBufferSize) |
|
void | InitializeAsyncHandle (SafePipeHandle handle) |
|
void | DisposeCore (bool disposing) |
|
unsafe int | ReadCore (Span< byte > buffer) |
|
unsafe ValueTask< int > | ReadAsyncCore (Memory< byte > buffer, CancellationToken cancellationToken) |
|
unsafe void | WriteCore (ReadOnlySpan< byte > buffer) |
|
unsafe ValueTask | WriteAsyncCore (ReadOnlyMemory< byte > buffer, CancellationToken cancellationToken) |
|
unsafe void | UpdateReadMode () |
|
bool | HasOverriddenBeginEndRead () |
|
bool | HasOverriddenBeginEndWrite () |
|
int | GetCopyBufferSize () |
|
Task< int > | BeginEndReadAsync (byte[] buffer, int offset, int count) |
|
void | FinishTrackingAsyncOperation (ReadWriteTask task) |
|
Task | BeginEndWriteAsync (byte[] buffer, int offset, int count) |
|
Definition at line 6 of file AnonymousPipeServerStream.cs.