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