Enum PipeShutdownKind
- Namespace
- Alternet.Scripter.Debugger.Dap.Connections
- Assembly
- Alternet.Scripter.Debugger.Dap.v10.dll
When possible, determines how the pipe first reached a close state
public enum PipeShutdownKind
Fields
InputReaderCompleted = 300The input's reader was completed
InputWriterCompleted = 301The input's writer was completed
None = 0The pipe is still open
OutputReaderCompleted = 302The output's reader was completed
OutputWriterCompleted = 303The input's writer was completed
PipeDisposed = 1The pipe itself was disposed
ProtocolExitClient = 400An application defined exit was triggered by the client
ProtocolExitServer = 401An application defined exit was triggered by the server
ReadDisposed = 101The socket-reader encountered a dispose failure
ReadEndOfStream = 100The socket-reader reached a natural EOF from the socket
ReadException = 103The socket-reader encountered a general failure
ReadFlushCanceled = 106When attempting to flush incoming data, the pipe indicated cancelation
ReadFlushCompleted = 105When attempting to flush incoming data, the pipe indicated that it was complete
ReadIOException = 102The socket-reader encountered an IO failure
ReadSocketError = 104The socket-reader encountered a socket failure - the SocketError may be populated
WriteDisposed = 201The socket-writer encountered a dispose failure
WriteEndOfStream = 200The socket-writerreached a natural EOF from the pipe
WriteException = 204The socket-writer encountered a general failure
WriteIOException = 203The socket-writer encountered an IO failure
WriteSocketError = 205The socket-writer encountered a socket failure - the SocketError may be populated