IrcStatementParseResult EnumerationNetIRC2 IRC Client Library for .NET
The result of attempting to parse an IRC statement.

Namespace: NetIrc2.Parsing
Assembly: NetIrc2 (in NetIrc2.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public enum IrcStatementParseResult
Members

  Member nameValueDescription
OK0 Parsing succeeded.
NothingToParse1 A full statement has not yet been received.
InvalidStatement2 The statement failed validation.
StatementTooLong3 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.
Disconnected4 The connection was lost. IrcStatement will not return this, but IrcStatementReceiver may.
TimedOut5 The read timed out. IrcStatement will not return this, but IrcStatementReceiver may.
See Also