Table of Contents

Enum PipeShutdownKind

Namespace
Alternet.Scripter.Debugger.Dap.Connections
Assembly
Alternet.Scripter.Debugger.Dap.v9.dll

When possible, determines how the pipe first reached a close state

public enum PipeShutdownKind

Fields

InputReaderCompleted = 300

The input's reader was completed

InputWriterCompleted = 301

The input's writer was completed

None = 0

The pipe is still open

OutputReaderCompleted = 302

The output's reader was completed

OutputWriterCompleted = 303

The input's writer was completed

PipeDisposed = 1

The pipe itself was disposed

ProtocolExitClient = 400

An application defined exit was triggered by the client

ProtocolExitServer = 401

An application defined exit was triggered by the server

ReadDisposed = 101

The socket-reader encountered a dispose failure

ReadEndOfStream = 100

The socket-reader reached a natural EOF from the socket

ReadException = 103

The socket-reader encountered a general failure

ReadFlushCanceled = 106

When attempting to flush incoming data, the pipe indicated cancelation

ReadFlushCompleted = 105

When attempting to flush incoming data, the pipe indicated that it was complete

ReadIOException = 102

The socket-reader encountered an IO failure

ReadSocketError = 104

The socket-reader encountered a socket failure - the SocketError may be populated

WriteDisposed = 201

The socket-writer encountered a dispose failure

WriteEndOfStream = 200

The socket-writerreached a natural EOF from the pipe

WriteException = 204

The socket-writer encountered a general failure

WriteIOException = 203

The socket-writer encountered an IO failure

WriteSocketError = 205

The socket-writer encountered a socket failure - the SocketError may be populated