The result of attempting to parse an IRC statement.
Namespace: NetIrc2.ParsingAssembly: NetIrc2 (in NetIrc2.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
OK | 0 | Parsing succeeded. | |
NothingToParse | 1 | A full statement has not yet been received. | |
InvalidStatement | 2 | The statement failed validation. | |
StatementTooLong | 3 | Either no statement has been received, or the statement that was received is too long. IRC does not allow more than 510 bytes (plus CR+LF) for a statement. | |
Disconnected | 4 | The connection was lost. IrcStatement will not return this, but IrcStatementReceiver may. | |
TimedOut | 5 | The read timed out. IrcStatement will not return this, but IrcStatementReceiver may. |
See Also