|
| | NamedPipeClientStream (string pipeName) |
| |
| | NamedPipeClientStream (string serverName, string pipeName) |
| |
| | NamedPipeClientStream (string serverName, string pipeName, PipeDirection direction) |
| |
| | NamedPipeClientStream (string serverName, string pipeName, PipeDirection direction, PipeOptions options) |
| |
| | NamedPipeClientStream (string serverName, string pipeName, PipeDirection direction, PipeOptions options, TokenImpersonationLevel impersonationLevel) |
| |
| | NamedPipeClientStream (string serverName, string pipeName, PipeDirection direction, PipeOptions options, TokenImpersonationLevel impersonationLevel, HandleInheritability inheritability) |
| |
| | NamedPipeClientStream (PipeDirection direction, bool isAsync, bool isConnected, SafePipeHandle safePipeHandle) |
| |
| void | Connect () |
| |
| void | Connect (int timeout) |
| |
| Task | ConnectAsync () |
| |
| Task | ConnectAsync (int timeout) |
| |
| Task | ConnectAsync (CancellationToken cancellationToken) |
| |
| Task | ConnectAsync (int timeout, CancellationToken cancellationToken) |
| |
| 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 () |
| |
Definition at line 11 of file NamedPipeClientStream.cs.