|
| NamedPipeServerStream (string pipeName) |
|
| NamedPipeServerStream (string pipeName, PipeDirection direction) |
|
| NamedPipeServerStream (string pipeName, PipeDirection direction, int maxNumberOfServerInstances) |
|
| NamedPipeServerStream (string pipeName, PipeDirection direction, int maxNumberOfServerInstances, PipeTransmissionMode transmissionMode) |
|
| NamedPipeServerStream (string pipeName, PipeDirection direction, int maxNumberOfServerInstances, PipeTransmissionMode transmissionMode, PipeOptions options) |
|
| NamedPipeServerStream (string pipeName, PipeDirection direction, int maxNumberOfServerInstances, PipeTransmissionMode transmissionMode, PipeOptions options, int inBufferSize, int outBufferSize) |
|
| NamedPipeServerStream (PipeDirection direction, bool isAsync, bool isConnected, SafePipeHandle safePipeHandle) |
|
Task | WaitForConnectionAsync () |
|
IAsyncResult | BeginWaitForConnection (AsyncCallback? callback, object? state) |
|
void | EndWaitForConnection (IAsyncResult asyncResult) |
|
void | WaitForConnection () |
|
Task | WaitForConnectionAsync (CancellationToken cancellationToken) |
|
void | Disconnect () |
|
unsafe string | GetImpersonationUserName () |
|
void | RunAsClient (PipeStreamImpersonationWorker impersonationWorker) |
|
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 () |
|
|
| NamedPipeServerStream (string pipeName, PipeDirection direction, int maxNumberOfServerInstances, PipeTransmissionMode transmissionMode, PipeOptions options, int inBufferSize, int outBufferSize, PipeSecurity pipeSecurity, HandleInheritability inheritability=HandleInheritability.None, PipeAccessRights additionalAccessRights=(PipeAccessRights) 0) |
|
override void | TryToReuse (PipeValueTaskSource source) |
|
void | UpdateMessageCompletion (bool completion) |
|
virtual void | CheckPipePropertyOperations () |
|
void | CheckReadOperations () |
|
void | CheckWriteOperations () |
|
void | ValidateHandleIsPipe (SafePipeHandle safePipeHandle) |
|
Exception | WinIOError (int errorCode) |
|
Task< int > | BeginReadInternal (byte[] buffer, int offset, int count, AsyncCallback callback, object state, bool serializeAsynchronously, bool apm) |
|
Task | BeginWriteInternal (byte[] buffer, int offset, int count, AsyncCallback callback, object state, bool serializeAsynchronously, bool apm) |
|
|
| NamedPipeServerStream (string pipeName, PipeDirection direction, int maxNumberOfServerInstances, PipeTransmissionMode transmissionMode, PipeOptions options, int inBufferSize, int outBufferSize, HandleInheritability inheritability) |
|
void | ValidateParameters (string pipeName, PipeDirection direction, int maxNumberOfServerInstances, PipeTransmissionMode transmissionMode, PipeOptions options, int inBufferSize, int outBufferSize, HandleInheritability inheritability) |
|
| ~NamedPipeServerStream () |
|
void | CheckConnectOperationsServer () |
|
void | CheckDisconnectOperations () |
|
void | Create (string pipeName, PipeDirection direction, int maxNumberOfServerInstances, PipeTransmissionMode transmissionMode, PipeOptions options, int inBufferSize, int outBufferSize, HandleInheritability inheritability) |
|
void | Create (string pipeName, PipeDirection direction, int maxNumberOfServerInstances, PipeTransmissionMode transmissionMode, PipeOptions options, int inBufferSize, int outBufferSize, PipeSecurity pipeSecurity, HandleInheritability inheritability, PipeAccessRights additionalAccessRights) |
|
unsafe ValueTask | WaitForConnectionCoreAsync (CancellationToken cancellationToken) |
|
void | CheckConnectOperationsServerWithHandle () |
|
unsafe string | HandleGetImpersonationUserNameError (int error, uint userNameMaxLength, char *userName) |
|
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 11 of file NamedPipeServerStream.cs.