IrcStatementReceiver TryReceive Method NetIRC2 IRC Client Library for .NET
Tries to receive an IRC statement. A blocking read is used. If you have a timeout set, parseResult may be TimedOut.

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

public bool TryReceive(
	out IrcStatement statement,
	out IrcStatementParseResult parseResult
)

Parameters

statement
Type: NetIrc2.Parsing IrcStatement 
The statement.
parseResult
Type: NetIrc2.Parsing IrcStatementParseResult 
The parse result.

Return Value

true if a complete IRC statement was received.
See Also