13 references to InternalHandle
System.IO.Pipes (13)
System\IO\Pipes\NamedPipeClientStream.Unix.cs (2)
97
return
InternalHandle
?.PipeSocket.ReceiveBufferSize ?? 0;
107
return
InternalHandle
?.PipeSocket.SendBufferSize ?? 0;
System\IO\Pipes\NamedPipeServerStream.cs (5)
179
if (
InternalHandle
!= null &&
InternalHandle
.IsClosed) // only check IsClosed if we have a handle
200
if (
InternalHandle
== null && CheckOperationsRequiresSetHandle)
204
if ((State == PipeState.Closed) || (
InternalHandle
!= null &&
InternalHandle
.IsClosed))
System\IO\Pipes\NamedPipeServerStream.Unix.cs (5)
153
InternalHandle
!.Dispose();
164
SafeHandle? handle =
InternalHandle
?.PipeSocketHandle;
185
return
InternalHandle
?.PipeSocket.ReceiveBufferSize ?? _inBufferSize;
195
return
InternalHandle
?.PipeSocket.SendBufferSize ?? _outBufferSize;
203
SafeHandle? handle =
InternalHandle
?.PipeSocketHandle;
System\IO\Pipes\PipeStream.Unix.cs (1)
307
return await
InternalHandle
!.PipeSocket.ReceiveAsync(destination, SocketFlags.None, cancellationToken).ConfigureAwait(false);