1 write to _handle
System.IO.Pipes (1)
System\IO\Pipes\PipeStream.cs (1)
96_handle = handle;
28 references to _handle
System.IO.Pipes (28)
System\IO\Pipes\PipeStream.cs (19)
156if (_handle != null && !_handle.IsClosed) 158_handle.Dispose(); 206if (CheckOperationsRequiresSetHandle && _handle == null) 211if ((_state == PipeState.Closed) || (_handle != null && _handle.IsClosed)) 237if (_handle == null) 241if (_handle.IsClosed) 247return _handle; 255return _handle; 325if (CheckOperationsRequiresSetHandle && _handle == null) 331if ((_state == PipeState.Closed) || (_handle != null && _handle.IsClosed)) 350if (CheckOperationsRequiresSetHandle && _handle == null) 356if ((_state == PipeState.Closed) || (_handle != null && _handle.IsClosed)) 374if (CheckOperationsRequiresSetHandle && _handle == null) 386if ((_state == PipeState.Closed) || (_handle != null && _handle.IsClosed))
System\IO\Pipes\PipeStream.Unix.cs (9)
258Debug.Assert(_handle != null); 259DebugAssertHandleValid(_handle); 272return _handle!.PipeSocket.Receive(buffer, SocketFlags.None); 282Debug.Assert(_handle != null); 283DebugAssertHandleValid(_handle); 293int bytesWritten = _handle!.PipeSocket.Send(buffer, SocketFlags.None); 321int bytesWritten = await _handle!.PipeSocket.SendAsync(source, SocketFlags.None, cancellationToken).ConfigureAwait(false); 483return _handle != null ? 484CheckPipeCall(Interop.Sys.Fcntl.GetPipeSz(_handle)) :