C# Class IrcSharp.IrcLine

Represents a raw irc line received over an irc connection.
Allows to analyze a raw irc line. The raw line is automatically broken down to it signle propertys as described in rfc 1459. They can be easily accessed by the given class propertys.
Inheritance: IIrcObject
Mostra file Open project: hapm/IrcShark Class Usage Examples

Public Methods

Method Description
IrcLine ( IrcClient client, String line ) : System
IrcLine ( IrcClient client, String prefix, String command, String parameters ) : System
IrcLine ( IrcLine source ) : System
ToString ( ) : String

Recreates the raw irc line as it was read from server.

Method Details

IrcLine() public method

public IrcLine ( IrcClient client, String line ) : System
client IrcClient
line String
return System

IrcLine() public method

public IrcLine ( IrcClient client, String prefix, String command, String parameters ) : System
client IrcClient
prefix String
command String
parameters String
return System

IrcLine() public method

public IrcLine ( IrcLine source ) : System
source IrcLine
return System

ToString() public method

Recreates the raw irc line as it was read from server.
public ToString ( ) : String
return String