C# Class IrcDotNet.IrcClient

Inheritance: IDisposable
Afficher le fichier Open project: IrcDotNet/IrcDotNet Class Usage Examples

Méthodes publiques

Свойство Type Description
DefaultPort int

Protected Properties

Свойство Type Description
isRegistered bool
isupportPrefix string
localUser IrcLocalUser
motdBuilder StringBuilder
regexChannelName string
regexHostName string
regexMessagePrefix string
regexMessageTarget string
regexNickName string
regexNickNameId string
regexServerName string
regexTargetMask string
regexUserName string
regexUserNameId string

Méthodes publiques

Méthode Description
Disconnect ( ) : void

Disconnects asynchronously from the server.

This method closes the client connection immediately and forcibly, and does not send a quit message to the server. To disconnect from the IRC server gracefully, call Quit(string) and wait for the connection to be closed.

Dispose ( ) : void

Releases all resources used by the IrcClient object.

GetMessageOfTheDay ( string targetServer = null ) : void

Requests the Message of the Day (MOTD) from the specified server.

GetNetworkInfo ( string serverMask = null, string targetServer = null ) : void

Requests statistics about the connected IRC network. If serverMask is specified, then the server only returns information about the part of the network formed by the servers whose names match the mask; otherwise, the information concerns the whole network

GetServerLinks ( string serverMask = null, string targetServer = null ) : void

Requests a list of all servers known by the target server. If serverMask is specified, then the server only returns information about the part of the network formed by the servers whose names match the mask; otherwise, the information concerns the whole network.

GetServerStatistics ( char query = null, string targetServer = null ) : void

Requests statistics about the specified server.

The server may not accept the command if query is unspecified.

GetServerTime ( string targetServer = null ) : void

Requests the local time on the specified server.

GetServerVersion ( string targetServer = null ) : void

Requests the version of the specified server.

ListChannels ( ) : void
ListChannels ( IEnumerable channelNames = null ) : void

Requests a list of information about the specified (or all) channels on the network.

Ping ( string targetServer = null ) : void

Sends a ping to the specified server.

QueryWho ( string mask = null, bool onlyOperators = false ) : void

Sends a Who query to the server targeting the specified channel or user masks.

QueryWhoIs ( ) : void
QueryWhoIs ( IEnumerable nickNameMasks ) : void

Sends a Who Is query to server targeting the specified nick name masks.

QueryWhoWas ( ) : void
QueryWhoWas ( IEnumerable nickNames, int entriesCount = -1 ) : void

Sends a Who Was query to server targeting the specified nick names.

Quit ( int timeout, string comment = null ) : void

Quits the server, giving the specified comment. Waits the specified duration of time before forcibly disconnecting.

Quit ( string comment = null ) : void

Quits the server, giving the specified comment.

Note that because this message is not sent immediately, calling Disconnect immediately after this will likely disconnect the client before it has a chance to quit the server properly. Quitting the server should automatically disconnect the client.

SendRawMessage ( string message ) : void

Sends the specified raw message to the server.

ToString ( ) : string

Returns a string representation of this instance.

Méthodes protégées

Méthode Description
CheckDisposed ( ) : void
CheckRegistrationInfo ( IrcRegistrationInfo registrationInfo, string registrationInfoParamName ) : void
Connect ( IrcRegistrationInfo registrationInfo ) : void
Dispose ( bool disposing ) : void

Releases all resources used by the IrcClient.

GetChannelFromName ( string channelName ) : IrcChannel
GetChannelFromName ( string channelName, bool &createdNew ) : IrcChannel

Gets the channel with the specified name, creating it if necessary.

GetChannelType ( char type ) : IrcChannelType

Gets the type of the channel from the specified character.

GetChannelsFromList ( string namesList ) : IEnumerable

Gets a list of channel objects from the specified comma-separated list of channel names.

GetMessageTarget ( string targetName ) : IIrcMessageTarget

Gets the target of a message from the specified name. A message target may be an IrcUser, IrcChannel, or IrcTargetMask.

GetModeAndParameters ( IEnumerable messageParameters ) : IEnumerable>.Tuple

Gets a collection of mode characters and mode parameters from the specified mode parameters. Combines multiple mode strings into a single mode string.

GetNumericUserMode ( ICollection modes ) : int
GetServerFromHostName ( string hostName ) : IrcServer
GetServerFromHostName ( string hostName, bool &createdNew ) : IrcServer

Gets the server with the specified host name, creating it if necessary.

GetSourceFromPrefix ( string prefix ) : IIrcMessageSource

Gets the source of a message from the specified prefix. A message source may be a IrcUser or IrcServer.

GetUserFromNickName ( string nickName, bool isOnline = true ) : IrcUser
GetUserFromNickName ( string nickName, bool isOnline, bool &createdNew ) : IrcUser

Gets the user with the specified nick name, creating it if necessary.

GetUserFromUserName ( string userName ) : IrcUser
GetUserFromUserName ( string userName, bool &createdNew ) : IrcUser

Gets the user with the specified user name, creating it if necessary.

GetUserModeAndNickName ( string input ) : string>.Tuple

Extracts the the mode and nick name of a user from the specified value.

GetUsersFromList ( string nickNamesList ) : IEnumerable

Gets a list of user objects from the specified comma-separated list of nick names.

HandleClientConnected ( IrcRegistrationInfo regInfo ) : void
HandleClientConnecting ( ) : void
HandleClientDisconnected ( ) : void
HandleISupportParameter ( string paramName, string paramValue ) : bool

Handles the specified parameter value of an ISUPPORT message, received from the server upon registration.

HandleStatsEntryReceived ( int type, IrcMessage message ) : void

Handles the specified statistical entry for the server, received in response to a STATS message.

InitializeMessageProcessors ( ) : void
IsChannelName ( string name ) : bool

Determines whether the specified name refers to a channel.

OnChannelListReceived ( IrcChannelListReceivedEventArgs e ) : void

Raises the ChannelListReceived event.

OnChannelModeChanged ( IrcChannel channel, IrcUser source, string newModes, IEnumerable newModeParameters ) : void
OnClientInfoReceived ( EventArgs e ) : void

Raises the ClientInfoReceived event.

OnConnectFailed ( IrcErrorEventArgs e ) : void

Raises the ConnectFailed event.

OnConnected ( EventArgs e ) : void

Raises the Connected event.

OnDisconnected ( EventArgs e ) : void

Raises the Disconnected event.

OnError ( IrcErrorEventArgs e ) : void

Raises the Error event.

OnErrorMessageReceived ( IrcErrorMessageEventArgs e ) : void

Raises the ErrorMessageReceived event.

OnMotdReceived ( EventArgs e ) : void

Raises the MotdReceived event.

OnNetworkInformationReceived ( IrcCommentEventArgs e ) : void

Raises the NetworkInformationReceived event.

OnPingReceived ( IrcPingOrPongReceivedEventArgs e ) : void

Raises the PingReceived event.

OnPongReceived ( IrcPingOrPongReceivedEventArgs e ) : void

Raises the PongReceived event.

OnProtocolError ( IrcProtocolErrorEventArgs e ) : void

Raises the ProtocolError event.

OnRawMessageReceived ( IrcRawMessageEventArgs e ) : void

Raises the RawMessageReceived event.

OnRawMessageSent ( IrcRawMessageEventArgs e ) : void

Raises the RawMessageSent event.

OnRegistered ( EventArgs e ) : void

Raises the Registered event.

OnServerBounce ( IrcServerInfoEventArgs e ) : void

Raises the ServerBounce event.

OnServerLinksListReceived ( IrcServerLinksListReceivedEventArgs e ) : void

Raises the ServerLinksListReceived event.

OnServerStatsReceived ( IrcServerStatsReceivedEventArgs e ) : void

Raises the ServerStatsReceived event.

OnServerSupportedFeaturesReceived ( EventArgs e ) : void

Raises the ServerSupportedFeaturesReceived event.

OnServerTimeReceived ( IrcServerTimeEventArgs e ) : void

Raises the ServerTimeReceived event.

OnServerVersionInfoReceived ( IrcServerVersionInfoEventArgs e ) : void

Raises the ServerVersionInfoReceived event.

OnValidateSslCertificate ( IrcValidateSslCertificateEventArgs e ) : void

Raises the ValidateSslCertificate event.

OnWhoIsReplyReceived ( IrcUserEventArgs e ) : void

Raises the WhoIsReplyReceived event.

OnWhoReplyReceived ( IrcNameEventArgs e ) : void

Raises the WhoReplyReceived event.

OnWhoWasReplyReceived ( IrcUserEventArgs e ) : void

Raises the WhoWasReplyReceived event.

ParseMessage ( string line ) : void
ResetState ( ) : void
SendMessageAdmin ( string targetServer = null ) : void

Sends a request for information about the administrator of the server.

SendMessageAway ( string text = null ) : void

Sends an update to the server indicating that the local user is away.

SendMessageChannelMode ( string channel, string modes = null, IEnumerable modeParameters = null ) : void

Sends an update for the modes of the specified channel.

SendMessageConnect ( string hostName, int port, string targetServer = null ) : void

Sends a request for the server to try to connect to another server.

SendMessageDie ( ) : void

Sends a request to the server telling it to shut down.

SendMessageInfo ( string targetServer = null ) : void

Sends a request for general information about the server program.

SendMessageInvite ( string channel, string nickName ) : void

Sends a request to invite the specified user to the specified channel.

SendMessageIsOn ( IEnumerable nickNames ) : void

Sends a request to check whether the specified users are currently online.

SendMessageJoin ( string>.IEnumerable channels ) : void
SendMessageJoin ( IEnumerable channels ) : void

Sends a request to join the specified channels.

SendMessageKick ( string>.IEnumerable channelsUsers, string comment = null ) : void

Sends a request to kick the specifier users from the specified channel.

SendMessageKick ( string channel, IEnumerable nickNames, string comment = null ) : void
SendMessageKill ( string nickName, string comment ) : void

Sends a request to disconnect the specified user from the server.

SendMessageLUsers ( string serverMask = null, string targetServer = null ) : void

Sends a request to get statistics about the size of the IRC network.

SendMessageLeaveAll ( ) : void

Sends a request to leave all channels in which the user is currently present.

SendMessageLinks ( string serverMask = null, string targetServer = null ) : void

Sends a request to list all other servers linked to the server.

SendMessageList ( IEnumerable channels = null, string targetServer = null ) : void

Sends a request to list channels and their topics.

SendMessageMotd ( string targetServer = null ) : void

Sends a request to receive the Message of the Day (MOTD) from the server.

SendMessageNames ( IEnumerable channels = null, string targetServer = null ) : void

Sends a request to list all names visible to the client.

SendMessageNick ( string nickName ) : void

Sends the nick name of the local user to the server. This command may be used either for intitially setting the nick name or changing it at any point.

SendMessageNotice ( IEnumerable targets, string text ) : void

Sends a notice to the specified targets.

SendMessageOper ( string userName, string password ) : void

Sends a request for server operator privileges.

SendMessagePart ( IEnumerable channels, string comment = null ) : void

Sends a request to leave the specified channels.

SendMessagePassword ( string password ) : void

Sends the password for registering the connection. This message must only be sent before the actual registration, which is done by SendMessageUser (for normal users) or SendMessageService (for services).

SendMessagePing ( string server, string targetServer = null ) : void

Sends a ping request to the server.

SendMessagePong ( string server, string targetServer = null ) : void

Sends a pong response (to a ping) to the server.

SendMessagePrivateMessage ( IEnumerable targets, string text ) : void

Sends a private message to the specified targets.

SendMessageQuit ( string comment = null ) : void

Sends a notification to the server indicating that the client is quitting the network.

SendMessageRehash ( ) : void

Sends a request to the server telling it to reprocess its configuration settings.

SendMessageRestart ( ) : void

Sends a message to the server telling it to restart.

SendMessageService ( string nickName, string distribution, string description = "" ) : void

Sends a request to register the client as a service on the server.

SendMessageServlist ( string mask = null, string type = null ) : void

Sends a request to list services currently connected to the netwrok/

SendMessageSquery ( string serviceName, string text ) : void

Sends a query message to a service.

SendMessageSquit ( string targetServer, string comment ) : void

Sends a request to disconnect the specified server from the network. This command is only available to oeprators.

SendMessageStats ( string query = null, string targetServer = null ) : void

Sends a request to query statistics for the server.

SendMessageTime ( string targetServer = null ) : void

Sends a request to query the local time on the server.

SendMessageTopic ( string channel, string topic = null ) : void

Sends an update or request for the topic of the specified channel.

SendMessageTrace ( string targetServer = null ) : void

Sends a query to trace the route to the server.

SendMessageUser ( string userName, int userMode, string realName ) : void

Sends a request to register the client as a user on the server.

SendMessageUserHost ( IEnumerable nickNames ) : void

Sends a request to return the host names of the specified users.

SendMessageUserMode ( string nickName, string modes = null ) : void

Sends an update or request for the current modes of the specified user.

SendMessageUsers ( string targetServer = null ) : void

Sends a request to return a list of information about all users currently registered on the server.

SendMessageVersion ( string targetServer = null ) : void

Sends a request for the version of the server program.

SendMessageWallops ( string text ) : void

Sends a message to all connected users that have the 'w' mode set.

SendMessageWho ( string mask = null, bool onlyOperators = false ) : void

Sends a request to perform a Who query on users.

SendMessageWhoIs ( IEnumerable nickNameMasks, string targetServer = null ) : void

Sends a request to perform a WhoIs query on users.

SendMessageWhoWas ( IEnumerable nickNames, int entriesCount = -1, string targetServer = null ) : void

Sends a request to perform a WhoWas query on users.

WriteMessage ( IrcMessage message ) : void

Writes the specified message (prefix, command, and parameters) to the network stream.

WriteMessage ( string line, object token = null ) : void
WriteMessage ( string prefix, string command ) : void
WriteMessage ( string prefix, string command, IEnumerable parameters ) : void

Private Methods

Méthode Description
CheckCommand ( string value ) : string
CheckMiddleParameter ( string value ) : string
CheckPrefix ( string value ) : string
CheckTrailingParameter ( string value ) : string
EnsureChannelName ( string c ) : void
GetChannelModes ( IrcChannel channel, string modes = null ) : void
GetLocalUserModes ( IrcLocalUser user ) : void
Invite ( IrcChannel channel, string userNickName ) : void
IrcClient ( ) : System
IsInvalidMessageChar ( char value ) : bool
Join ( string>.IEnumerable channels ) : void
Join ( IEnumerable channels ) : void
Kick ( IEnumerable channelUsers, string comment = null ) : void
Kick ( IrcChannel channel, IEnumerable usersNickNames, string comment = null ) : void
Leave ( IEnumerable channels, string comment = null ) : void
ProcessMessageEndOfStats ( IrcMessage message ) : void
ProcessMessageError ( IrcMessage message ) : void
ProcessMessageInvite ( IrcMessage message ) : void
ProcessMessageJoin ( IrcMessage message ) : void
ProcessMessageKick ( IrcMessage message ) : void
ProcessMessageLUserChannels ( IrcMessage message ) : void
ProcessMessageLUserClient ( IrcMessage message ) : void
ProcessMessageLUserMe ( IrcMessage message ) : void
ProcessMessageLUserOp ( IrcMessage message ) : void
ProcessMessageLUserUnknown ( IrcMessage message ) : void
ProcessMessageMode ( IrcMessage message ) : void
ProcessMessageNick ( IrcMessage message ) : void
ProcessMessageNotice ( IrcMessage message ) : void
ProcessMessageNumericError ( IrcMessage message ) : void
ProcessMessagePart ( IrcMessage message ) : void
ProcessMessagePing ( IrcMessage message ) : void
ProcessMessagePong ( IrcMessage message ) : void
ProcessMessagePrivateMessage ( IrcMessage message ) : void
ProcessMessageQuit ( IrcMessage message ) : void
ProcessMessageReplyAway ( IrcMessage message ) : void
ProcessMessageReplyBounceOrISupport ( IrcMessage message ) : void
ProcessMessageReplyCreated ( IrcMessage message ) : void
ProcessMessageReplyEndOfLinks ( IrcMessage message ) : void
ProcessMessageReplyEndOfNames ( IrcMessage message ) : void
ProcessMessageReplyEndOfWho ( IrcMessage message ) : void
ProcessMessageReplyEndOfWhoIs ( IrcMessage message ) : void
ProcessMessageReplyEndOfWhoWas ( IrcMessage message ) : void
ProcessMessageReplyInviting ( IrcMessage message ) : void
ProcessMessageReplyIsOn ( IrcMessage message ) : void
ProcessMessageReplyLinks ( IrcMessage message ) : void
ProcessMessageReplyList ( IrcMessage message ) : void
ProcessMessageReplyListEnd ( IrcMessage message ) : void
ProcessMessageReplyMotd ( IrcMessage message ) : void
ProcessMessageReplyMotdEnd ( IrcMessage message ) : void
ProcessMessageReplyMotdStart ( IrcMessage message ) : void
ProcessMessageReplyMyInfo ( IrcMessage message ) : void
ProcessMessageReplyNameReply ( IrcMessage message ) : void
ProcessMessageReplyNoTopic ( IrcMessage message ) : void
ProcessMessageReplyNowAway ( IrcMessage message ) : void
ProcessMessageReplyTime ( IrcMessage message ) : void
ProcessMessageReplyTopic ( IrcMessage message ) : void
ProcessMessageReplyUnAway ( IrcMessage message ) : void
ProcessMessageReplyVersion ( IrcMessage message ) : void
ProcessMessageReplyWelcome ( IrcMessage message ) : void
ProcessMessageReplyWhoIsChannels ( IrcMessage message ) : void
ProcessMessageReplyWhoIsIdle ( IrcMessage message ) : void
ProcessMessageReplyWhoIsOperator ( IrcMessage message ) : void
ProcessMessageReplyWhoIsServer ( IrcMessage message ) : void
ProcessMessageReplyWhoIsUser ( IrcMessage message ) : void
ProcessMessageReplyWhoReply ( IrcMessage message ) : void
ProcessMessageReplyWhoWasUser ( IrcMessage message ) : void
ProcessMessageReplyYouAreService ( IrcMessage message ) : void
ProcessMessageReplyYourHost ( IrcMessage message ) : void
ProcessMessageStatsCLine ( IrcMessage message ) : void
ProcessMessageStatsCommands ( IrcMessage message ) : void
ProcessMessageStatsHLine ( IrcMessage message ) : void
ProcessMessageStatsILine ( IrcMessage message ) : void
ProcessMessageStatsKLine ( IrcMessage message ) : void
ProcessMessageStatsLLine ( IrcMessage message ) : void
ProcessMessageStatsLinkInfo ( IrcMessage message ) : void
ProcessMessageStatsNLine ( IrcMessage message ) : void
ProcessMessageStatsOLine ( IrcMessage message ) : void
ProcessMessageStatsUpTime ( IrcMessage message ) : void
ProcessMessageStatsYLine ( IrcMessage message ) : void
ProcessMessageTopic ( IrcMessage message ) : void
ReadMessage ( IrcMessage message, string line ) : void
SendNotice ( IEnumerable targetsNames, string text ) : void
SendPrivateMessage ( IEnumerable targetsNames, string text ) : void
SetAway ( string text ) : void
SetChannelModes ( IrcChannel channel, string modes, IEnumerable modeParameters = null ) : void
SetLocalUserModes ( IrcLocalUser user, string modes ) : void
SetNickName ( string nickName ) : void
SetTopic ( string channel, string topic = null ) : void
UnsetAway ( ) : void

Method Details

CheckDisposed() protected méthode

protected CheckDisposed ( ) : void
Résultat void

CheckRegistrationInfo() protected méthode

protected CheckRegistrationInfo ( IrcRegistrationInfo registrationInfo, string registrationInfoParamName ) : void
registrationInfo IrcRegistrationInfo
registrationInfoParamName string
Résultat void

Connect() protected méthode

protected Connect ( IrcRegistrationInfo registrationInfo ) : void
registrationInfo IrcRegistrationInfo
Résultat void

Disconnect() public méthode

Disconnects asynchronously from the server.
This method closes the client connection immediately and forcibly, and does not send a quit message to the server. To disconnect from the IRC server gracefully, call Quit(string) and wait for the connection to be closed.
The current instance has already been disposed.
public Disconnect ( ) : void
Résultat void

Dispose() public méthode

Releases all resources used by the IrcClient object.
public Dispose ( ) : void
Résultat void

Dispose() protected méthode

Releases all resources used by the IrcClient.
protected Dispose ( bool disposing ) : void
disposing bool /// if the consumer is actively disposing the object; /// if the garbage collector is finalizing the object. ///
Résultat void

GetChannelFromName() protected méthode

protected GetChannelFromName ( string channelName ) : IrcChannel
channelName string
Résultat IrcChannel

GetChannelFromName() protected méthode

Gets the channel with the specified name, creating it if necessary.
protected GetChannelFromName ( string channelName, bool &createdNew ) : IrcChannel
channelName string The name of the channel.
createdNew bool /// if the channel object was created during the call; /// , otherwise. ///
Résultat IrcChannel

GetChannelType() protected méthode

Gets the type of the channel from the specified character.
/// does not correspond to any known channel type. ///
protected GetChannelType ( char type ) : IrcChannelType
type char /// A character that represents the type of the channel. /// The character may be one of the following: /// /// /// Character /// Channel type /// /// /// = /// Public channel /// /// /// * /// Private channel /// /// /// @ /// Secret channel /// /// ///
Résultat IrcChannelType

GetChannelsFromList() protected méthode

Gets a list of channel objects from the specified comma-separated list of channel names.
protected GetChannelsFromList ( string namesList ) : IEnumerable
namesList string A value that contains a comma-separated list of names of channels.
Résultat IEnumerable

GetMessageOfTheDay() public méthode

Requests the Message of the Day (MOTD) from the specified server.
The current instance has already been disposed.
public GetMessageOfTheDay ( string targetServer = null ) : void
targetServer string /// The name of the server from which to request the MOTD, or /// for the current server. ///
Résultat void

GetMessageTarget() protected méthode

Gets the target of a message from the specified name. A message target may be an IrcUser, IrcChannel, or IrcTargetMask.
/// does not represent a valid message target. ///
protected GetMessageTarget ( string targetName ) : IIrcMessageTarget
targetName string The name of the target.
Résultat IIrcMessageTarget

GetModeAndParameters() protected méthode

Gets a collection of mode characters and mode parameters from the specified mode parameters. Combines multiple mode strings into a single mode string.
protected GetModeAndParameters ( IEnumerable messageParameters ) : IEnumerable>.Tuple
messageParameters IEnumerable /// A collection of message parameters, which consists of mode strings and mode /// parameters. A mode string is of the form `( "+" / "-" ) *( mode character )`, and specifies mode changes. /// A mode parameter is arbitrary text associated with a certain mode. ///
Résultat IEnumerable>.Tuple

GetNetworkInfo() public méthode

Requests statistics about the connected IRC network. If serverMask is specified, then the server only returns information about the part of the network formed by the servers whose names match the mask; otherwise, the information concerns the whole network
The current instance has already been disposed.
public GetNetworkInfo ( string serverMask = null, string targetServer = null ) : void
serverMask string /// A wildcard expression for matching against server names, or /// to match the entire network. ///
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
Résultat void

GetNumericUserMode() protected méthode

protected GetNumericUserMode ( ICollection modes ) : int
modes ICollection
Résultat int

GetServerFromHostName() protected méthode

protected GetServerFromHostName ( string hostName ) : IrcServer
hostName string
Résultat IrcServer

GetServerFromHostName() protected méthode

Gets the server with the specified host name, creating it if necessary.
protected GetServerFromHostName ( string hostName, bool &createdNew ) : IrcServer
hostName string The host name of the server.
createdNew bool /// if the server object was created during the call; /// , otherwise. ///
Résultat IrcServer

GetServerLinks() public méthode

Requests a list of all servers known by the target server. If serverMask is specified, then the server only returns information about the part of the network formed by the servers whose names match the mask; otherwise, the information concerns the whole network.
The current instance has already been disposed.
public GetServerLinks ( string serverMask = null, string targetServer = null ) : void
serverMask string /// A wildcard expression for matching against server names, or /// to match the entire network. ///
targetServer string /// The name of the server to which to forward the request, or /// for the current server. ///
Résultat void

GetServerStatistics() public méthode

Requests statistics about the specified server.
The server may not accept the command if query is unspecified.
The current instance has already been disposed.
public GetServerStatistics ( char query = null, string targetServer = null ) : void
query char /// The query character that indicates which server statistics to return. /// The set of valid query characters is dependent on the implementation of the particular IRC server. ///
targetServer string The name of the server whose statistics to request.
Résultat void

GetServerTime() public méthode

Requests the local time on the specified server.
The current instance has already been disposed.
public GetServerTime ( string targetServer = null ) : void
targetServer string The name of the server whose local time to request.
Résultat void

GetServerVersion() public méthode

Requests the version of the specified server.
The current instance has already been disposed.
public GetServerVersion ( string targetServer = null ) : void
targetServer string The name of the server whose version to request.
Résultat void

GetSourceFromPrefix() protected méthode

Gets the source of a message from the specified prefix. A message source may be a IrcUser or IrcServer.
/// does not represent a valid message source. ///
protected GetSourceFromPrefix ( string prefix ) : IIrcMessageSource
prefix string The raw prefix of the message.
Résultat IIrcMessageSource

GetUserFromNickName() protected méthode

protected GetUserFromNickName ( string nickName, bool isOnline = true ) : IrcUser
nickName string
isOnline bool
Résultat IrcUser

GetUserFromNickName() protected méthode

Gets the user with the specified nick name, creating it if necessary.
protected GetUserFromNickName ( string nickName, bool isOnline, bool &createdNew ) : IrcUser
nickName string The nick name of the user.
isOnline bool /// if the user is currently online; /// , if the user is currently offline. /// The property of the user object is set to this value. ///
createdNew bool /// if the user object was created during the call; /// , otherwise. ///
Résultat IrcUser

GetUserFromUserName() protected méthode

protected GetUserFromUserName ( string userName ) : IrcUser
userName string
Résultat IrcUser

GetUserFromUserName() protected méthode

Gets the user with the specified user name, creating it if necessary.
protected GetUserFromUserName ( string userName, bool &createdNew ) : IrcUser
userName string The user name of the user.
createdNew bool /// if the user object was created during the call; /// , otherwise. ///
Résultat IrcUser

GetUserModeAndNickName() protected méthode

Extracts the the mode and nick name of a user from the specified value.
protected GetUserModeAndNickName ( string input ) : string>.Tuple
input string The input value, containing a nick name optionally prefixed by a mode character.
Résultat string>.Tuple

GetUsersFromList() protected méthode

Gets a list of user objects from the specified comma-separated list of nick names.
protected GetUsersFromList ( string nickNamesList ) : IEnumerable
nickNamesList string A value that contains a comma-separated list of nick names of users.
Résultat IEnumerable

HandleClientConnected() protected méthode

protected HandleClientConnected ( IrcRegistrationInfo regInfo ) : void
regInfo IrcRegistrationInfo
Résultat void

HandleClientConnecting() protected méthode

protected HandleClientConnecting ( ) : void
Résultat void

HandleClientDisconnected() protected méthode

protected HandleClientDisconnected ( ) : void
Résultat void

HandleISupportParameter() protected méthode

Handles the specified parameter value of an ISUPPORT message, received from the server upon registration.
protected HandleISupportParameter ( string paramName, string paramValue ) : bool
paramName string The name of the parameter.
paramValue string /// The value of the parameter, or if it does not have a value. ///
Résultat bool

HandleStatsEntryReceived() protected méthode

Handles the specified statistical entry for the server, received in response to a STATS message.
protected HandleStatsEntryReceived ( int type, IrcMessage message ) : void
type int The type of the statistical entry for the server.
message IrcMessage The message that contains the statistical entry.
Résultat void

InitializeMessageProcessors() protected méthode

protected InitializeMessageProcessors ( ) : void
Résultat void

IsChannelName() protected méthode

Determines whether the specified name refers to a channel.
protected IsChannelName ( string name ) : bool
name string The name to check.
Résultat bool

ListChannels() public méthode

public ListChannels ( ) : void
Résultat void

ListChannels() public méthode

Requests a list of information about the specified (or all) channels on the network.
public ListChannels ( IEnumerable channelNames = null ) : void
channelNames IEnumerable /// The names of the channels to list, or to list all channels /// on the network. ///
Résultat void

OnChannelListReceived() protected méthode

Raises the ChannelListReceived event.
protected OnChannelListReceived ( IrcChannelListReceivedEventArgs e ) : void
e IrcChannelListReceivedEventArgs /// The instance containing the event data. ///
Résultat void

OnChannelModeChanged() protected méthode

protected OnChannelModeChanged ( IrcChannel channel, IrcUser source, string newModes, IEnumerable newModeParameters ) : void
channel IrcChannel
source IrcUser
newModes string
newModeParameters IEnumerable
Résultat void

OnClientInfoReceived() protected méthode

Raises the ClientInfoReceived event.
protected OnClientInfoReceived ( EventArgs e ) : void
e System.EventArgs The instance containing the event data.
Résultat void

OnConnectFailed() protected méthode

Raises the ConnectFailed event.
protected OnConnectFailed ( IrcErrorEventArgs e ) : void
e IrcErrorEventArgs The instance containing the event data.
Résultat void

OnConnected() protected méthode

Raises the Connected event.
protected OnConnected ( EventArgs e ) : void
e System.EventArgs The instance containing the event data.
Résultat void

OnDisconnected() protected méthode

Raises the Disconnected event.
protected OnDisconnected ( EventArgs e ) : void
e System.EventArgs The instance containing the event data.
Résultat void

OnError() protected méthode

Raises the Error event.
protected OnError ( IrcErrorEventArgs e ) : void
e IrcErrorEventArgs The instance containing the event data.
Résultat void

OnErrorMessageReceived() protected méthode

Raises the ErrorMessageReceived event.
protected OnErrorMessageReceived ( IrcErrorMessageEventArgs e ) : void
e IrcErrorMessageEventArgs The instance containing the event data.
Résultat void

OnMotdReceived() protected méthode

Raises the MotdReceived event.
protected OnMotdReceived ( EventArgs e ) : void
e System.EventArgs The instance containing the event data.
Résultat void

OnNetworkInformationReceived() protected méthode

Raises the NetworkInformationReceived event.
protected OnNetworkInformationReceived ( IrcCommentEventArgs e ) : void
e IrcCommentEventArgs The instance containing the event data.
Résultat void

OnPingReceived() protected méthode

Raises the PingReceived event.
protected OnPingReceived ( IrcPingOrPongReceivedEventArgs e ) : void
e IrcPingOrPongReceivedEventArgs The instance containing the event data.
Résultat void

OnPongReceived() protected méthode

Raises the PongReceived event.
protected OnPongReceived ( IrcPingOrPongReceivedEventArgs e ) : void
e IrcPingOrPongReceivedEventArgs The instance containing the event data.
Résultat void

OnProtocolError() protected méthode

Raises the ProtocolError event.
protected OnProtocolError ( IrcProtocolErrorEventArgs e ) : void
e IrcProtocolErrorEventArgs The instance containing the event data.
Résultat void

OnRawMessageReceived() protected méthode

Raises the RawMessageReceived event.
protected OnRawMessageReceived ( IrcRawMessageEventArgs e ) : void
e IrcRawMessageEventArgs The instance containing the event data.
Résultat void

OnRawMessageSent() protected méthode

Raises the RawMessageSent event.
protected OnRawMessageSent ( IrcRawMessageEventArgs e ) : void
e IrcRawMessageEventArgs The instance containing the event data.
Résultat void

OnRegistered() protected méthode

Raises the Registered event.
protected OnRegistered ( EventArgs e ) : void
e System.EventArgs The instance containing the event data.
Résultat void

OnServerBounce() protected méthode

Raises the ServerBounce event.
protected OnServerBounce ( IrcServerInfoEventArgs e ) : void
e IrcServerInfoEventArgs The instance containing the event data.
Résultat void

OnServerLinksListReceived() protected méthode

Raises the ServerLinksListReceived event.
protected OnServerLinksListReceived ( IrcServerLinksListReceivedEventArgs e ) : void
e IrcServerLinksListReceivedEventArgs /// The instance containing the event data. ///
Résultat void

OnServerStatsReceived() protected méthode

Raises the ServerStatsReceived event.
protected OnServerStatsReceived ( IrcServerStatsReceivedEventArgs e ) : void
e IrcServerStatsReceivedEventArgs /// The instance containing the event data. ///
Résultat void

OnServerSupportedFeaturesReceived() protected méthode

Raises the ServerSupportedFeaturesReceived event.
protected OnServerSupportedFeaturesReceived ( EventArgs e ) : void
e System.EventArgs The instance containing the event data.
Résultat void

OnServerTimeReceived() protected méthode

Raises the ServerTimeReceived event.
protected OnServerTimeReceived ( IrcServerTimeEventArgs e ) : void
e IrcServerTimeEventArgs The instance containing the event data.
Résultat void

OnServerVersionInfoReceived() protected méthode

Raises the ServerVersionInfoReceived event.
protected OnServerVersionInfoReceived ( IrcServerVersionInfoEventArgs e ) : void
e IrcServerVersionInfoEventArgs The instance containing the event data.
Résultat void

OnValidateSslCertificate() protected méthode

Raises the ValidateSslCertificate event.
protected OnValidateSslCertificate ( IrcValidateSslCertificateEventArgs e ) : void
e IrcValidateSslCertificateEventArgs /// The instance containing the event data. ///
Résultat void

OnWhoIsReplyReceived() protected méthode

Raises the WhoIsReplyReceived event.
protected OnWhoIsReplyReceived ( IrcUserEventArgs e ) : void
e IrcUserEventArgs The instance containing the event data.
Résultat void

OnWhoReplyReceived() protected méthode

Raises the WhoReplyReceived event.
protected OnWhoReplyReceived ( IrcNameEventArgs e ) : void
e IrcNameEventArgs The instance containing the event data.
Résultat void

OnWhoWasReplyReceived() protected méthode

Raises the WhoWasReplyReceived event.
protected OnWhoWasReplyReceived ( IrcUserEventArgs e ) : void
e IrcUserEventArgs The instance containing the event data.
Résultat void

ParseMessage() protected méthode

protected ParseMessage ( string line ) : void
line string
Résultat void

Ping() public méthode

Sends a ping to the specified server.
The current instance has already been disposed.
public Ping ( string targetServer = null ) : void
targetServer string The name of the server to ping.
Résultat void

QueryWho() public méthode

Sends a Who query to the server targeting the specified channel or user masks.
The current instance has already been disposed.
public QueryWho ( string mask = null, bool onlyOperators = false ) : void
mask string /// A wildcard expression for matching against channel names; or if none can be found, /// host names, server names, real names, and nick names of users. If the value is , /// all users are matched. ///
onlyOperators bool /// to match only server operators; /// to match all users. ///
Résultat void

QueryWhoIs() public méthode

public QueryWhoIs ( ) : void
Résultat void

QueryWhoIs() public méthode

Sends a Who Is query to server targeting the specified nick name masks.
The current instance has already been disposed. is .
public QueryWhoIs ( IEnumerable nickNameMasks ) : void
nickNameMasks IEnumerable /// A collection of wildcard expressions for matching against nick names of users. ///
Résultat void

QueryWhoWas() public méthode

public QueryWhoWas ( ) : void
Résultat void

QueryWhoWas() public méthode

Sends a Who Was query to server targeting the specified nick names.
The current instance has already been disposed. is .
public QueryWhoWas ( IEnumerable nickNames, int entriesCount = -1 ) : void
nickNames IEnumerable The nick names of the users to query.
entriesCount int /// The maximum number of entries to return from the query. A negative value /// specifies to return an unlimited number of entries. ///
Résultat void

Quit() public méthode

Quits the server, giving the specified comment. Waits the specified duration of time before forcibly disconnecting.
The current instance has already been disposed.
public Quit ( int timeout, string comment = null ) : void
timeout int The number of milliseconds to wait before forcibly disconnecting.
comment string
Résultat void

Quit() public méthode

Quits the server, giving the specified comment.
Note that because this message is not sent immediately, calling Disconnect immediately after this will likely disconnect the client before it has a chance to quit the server properly. Quitting the server should automatically disconnect the client.
The current instance has already been disposed.
public Quit ( string comment = null ) : void
comment string The comment to send to the server.
Résultat void

ResetState() protected méthode

protected ResetState ( ) : void
Résultat void

SendMessageAdmin() protected méthode

Sends a request for information about the administrator of the server.
protected SendMessageAdmin ( string targetServer = null ) : void
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
Résultat void

SendMessageAway() protected méthode

Sends an update to the server indicating that the local user is away.
protected SendMessageAway ( string text = null ) : void
text string /// The text of the away message. The away message is sent to any user that tries to contact /// the local user while it is away. ///
Résultat void

SendMessageChannelMode() protected méthode

Sends an update for the modes of the specified channel.
protected SendMessageChannelMode ( string channel, string modes = null, IEnumerable modeParameters = null ) : void
channel string The channel whose modes to update.
modes string The mode string that indicates the channel modes to change.
modeParameters IEnumerable A collection of parameters to the specified .
Résultat void

SendMessageConnect() protected méthode

Sends a request for the server to try to connect to another server.
protected SendMessageConnect ( string hostName, int port, string targetServer = null ) : void
hostName string The host name of the other server to which the server should connect.
port int The port on the other server to which the server should connect.
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
Résultat void

SendMessageDie() protected méthode

Sends a request to the server telling it to shut down.
protected SendMessageDie ( ) : void
Résultat void

SendMessageInfo() protected méthode

Sends a request for general information about the server program.
protected SendMessageInfo ( string targetServer = null ) : void
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
Résultat void

SendMessageInvite() protected méthode

Sends a request to invite the specified user to the specified channel.
protected SendMessageInvite ( string channel, string nickName ) : void
channel string The name of the channel to which to invite the user.
nickName string The nick name of the user to invite.
Résultat void

SendMessageIsOn() protected méthode

Sends a request to check whether the specified users are currently online.
protected SendMessageIsOn ( IEnumerable nickNames ) : void
nickNames IEnumerable A collection of the nick names of the users to query.
Résultat void

SendMessageJoin() protected méthode

protected SendMessageJoin ( string>.IEnumerable channels ) : void
channels string>.IEnumerable A collection of 2-tuples of the names and keys of the channels to join.
Résultat void

SendMessageJoin() protected méthode

Sends a request to join the specified channels.
protected SendMessageJoin ( IEnumerable channels ) : void
channels IEnumerable A collection of the names of the channels to join.
Résultat void

SendMessageKick() protected méthode

Sends a request to kick the specifier users from the specified channel.
protected SendMessageKick ( string>.IEnumerable channelsUsers, string comment = null ) : void
channelsUsers string>.IEnumerable /// A collection of 2-tuples of channel names and the nick names of the users to /// kick from the channel. ///
comment string The comment to send the server, or for none.
Résultat void

SendMessageKick() protected méthode

protected SendMessageKick ( string channel, IEnumerable nickNames, string comment = null ) : void
channel string The name of the channel from which to kick the users.
nickNames IEnumerable A collection of the nick names of the users to kick from the channel.
comment string
Résultat void

SendMessageKill() protected méthode

Sends a request to disconnect the specified user from the server.
protected SendMessageKill ( string nickName, string comment ) : void
nickName string The nick name of the user to disconnect.
comment string The comment to send the server.
Résultat void

SendMessageLUsers() protected méthode

Sends a request to get statistics about the size of the IRC network.
protected SendMessageLUsers ( string serverMask = null, string targetServer = null ) : void
serverMask string /// A wildcard expression for matching against the names of servers, or /// to match the entire network. ///
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
Résultat void

SendMessageLeaveAll() protected méthode

Sends a request to leave all channels in which the user is currently present.
protected SendMessageLeaveAll ( ) : void
Résultat void

SendMessageLinks() protected méthode

Sends a request to list all other servers linked to the server.
protected SendMessageLinks ( string serverMask = null, string targetServer = null ) : void
serverMask string A wildcard expression for matching the names of servers to list.
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
Résultat void

SendMessageList() protected méthode

Sends a request to list channels and their topics.
protected SendMessageList ( IEnumerable channels = null, string targetServer = null ) : void
channels IEnumerable /// A collection of the names of channels to list, or for all /// channels. ///
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
Résultat void

SendMessageMotd() protected méthode

Sends a request to receive the Message of the Day (MOTD) from the server.
protected SendMessageMotd ( string targetServer = null ) : void
targetServer string /// The name of the server to which to forward the message, or for /// the current server. ///
Résultat void

SendMessageNames() protected méthode

Sends a request to list all names visible to the client.
protected SendMessageNames ( IEnumerable channels = null, string targetServer = null ) : void
channels IEnumerable /// A collection of the names of channels for which to list users, or /// for all channels. ///
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
Résultat void

SendMessageNick() protected méthode

Sends the nick name of the local user to the server. This command may be used either for intitially setting the nick name or changing it at any point.
protected SendMessageNick ( string nickName ) : void
nickName string The nick name to set.
Résultat void

SendMessageNotice() protected méthode

Sends a notice to the specified targets.
protected SendMessageNotice ( IEnumerable targets, string text ) : void
targets IEnumerable A collection of the targets to which to send the message.
text string The text of the message to send.
Résultat void

SendMessageOper() protected méthode

Sends a request for server operator privileges.
protected SendMessageOper ( string userName, string password ) : void
userName string The user name with which to register.
password string The password with which to register.
Résultat void

SendMessagePart() protected méthode

Sends a request to leave the specified channels.
protected SendMessagePart ( IEnumerable channels, string comment = null ) : void
channels IEnumerable A collection of the names of the channels to leave.
comment string The comment to send the server, or for none.
Résultat void

SendMessagePassword() protected méthode

Sends the password for registering the connection. This message must only be sent before the actual registration, which is done by SendMessageUser (for normal users) or SendMessageService (for services).
protected SendMessagePassword ( string password ) : void
password string The connection password.
Résultat void

SendMessagePing() protected méthode

Sends a ping request to the server.
protected SendMessagePing ( string server, string targetServer = null ) : void
server string The name of the server to which to send the request.
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
Résultat void

SendMessagePong() protected méthode

Sends a pong response (to a ping) to the server.
protected SendMessagePong ( string server, string targetServer = null ) : void
server string The name of the server to which to send the response.
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
Résultat void

SendMessagePrivateMessage() protected méthode

Sends a private message to the specified targets.
protected SendMessagePrivateMessage ( IEnumerable targets, string text ) : void
targets IEnumerable A collection of the targets to which to send the message.
text string The text of the message to send.
Résultat void

SendMessageQuit() protected méthode

Sends a notification to the server indicating that the client is quitting the network.
protected SendMessageQuit ( string comment = null ) : void
comment string The comment to send the server, or for none.
Résultat void

SendMessageRehash() protected méthode

Sends a request to the server telling it to reprocess its configuration settings.
protected SendMessageRehash ( ) : void
Résultat void

SendMessageRestart() protected méthode

Sends a message to the server telling it to restart.
protected SendMessageRestart ( ) : void
Résultat void

SendMessageService() protected méthode

Sends a request to register the client as a service on the server.
protected SendMessageService ( string nickName, string distribution, string description = "" ) : void
nickName string The nick name of the service.
distribution string /// A wildcard expression for matching against server names, which determines where /// the service is visible. ///
description string A description of the service.
Résultat void

SendMessageServlist() protected méthode

Sends a request to list services currently connected to the netwrok/
protected SendMessageServlist ( string mask = null, string type = null ) : void
mask string A wildcard expression for matching against the names of services.
type string The type of services to list.
Résultat void

SendMessageSquery() protected méthode

Sends a query message to a service.
protected SendMessageSquery ( string serviceName, string text ) : void
serviceName string The name of the service.
text string The text of the message to send.
Résultat void

SendMessageSquit() protected méthode

Sends a request to disconnect the specified server from the network. This command is only available to oeprators.
protected SendMessageSquit ( string targetServer, string comment ) : void
targetServer string The name of the server to disconnected from the network.
comment string The comment to send the server.
Résultat void

SendMessageStats() protected méthode

Sends a request to query statistics for the server.
protected SendMessageStats ( string query = null, string targetServer = null ) : void
query string The query to send the server.
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
Résultat void

SendMessageTime() protected méthode

Sends a request to query the local time on the server.
protected SendMessageTime ( string targetServer = null ) : void
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
Résultat void

SendMessageTopic() protected méthode

Sends an update or request for the topic of the specified channel.
protected SendMessageTopic ( string channel, string topic = null ) : void
channel string The name of the channel whose topic to change.
topic string The new topic to set, or to request the current topic.
Résultat void

SendMessageTrace() protected méthode

Sends a query to trace the route to the server.
protected SendMessageTrace ( string targetServer = null ) : void
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
Résultat void

SendMessageUser() protected méthode

Sends a request to register the client as a user on the server.
protected SendMessageUser ( string userName, int userMode, string realName ) : void
userName string The user name of the user.
userMode int The initial mode of the user.
realName string The real name of the user.
Résultat void

SendMessageUserHost() protected méthode

Sends a request to return the host names of the specified users.
protected SendMessageUserHost ( IEnumerable nickNames ) : void
nickNames IEnumerable A collection of the nick names of the users to query.
Résultat void

SendMessageUserMode() protected méthode

Sends an update or request for the current modes of the specified user.
protected SendMessageUserMode ( string nickName, string modes = null ) : void
nickName string The nick name of the user whose modes to update/request.
modes string The mode string that indicates the user modes to change.
Résultat void

SendMessageUsers() protected méthode

Sends a request to return a list of information about all users currently registered on the server.
protected SendMessageUsers ( string targetServer = null ) : void
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
Résultat void

SendMessageVersion() protected méthode

Sends a request for the version of the server program.
protected SendMessageVersion ( string targetServer = null ) : void
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
Résultat void

SendMessageWallops() protected méthode

Sends a message to all connected users that have the 'w' mode set.
protected SendMessageWallops ( string text ) : void
text string The text of the message to send.
Résultat void

SendMessageWho() protected méthode

Sends a request to perform a Who query on users.
protected SendMessageWho ( string mask = null, bool onlyOperators = false ) : void
mask string /// A wildcard expression for matching against channel names; or if none can be found, /// host names, server names, real names, and nick names of users. If the value is , /// all users are matched. ///
onlyOperators bool /// to match only server operators; /// to match all users. ///
Résultat void

SendMessageWhoIs() protected méthode

Sends a request to perform a WhoIs query on users.
protected SendMessageWhoIs ( IEnumerable nickNameMasks, string targetServer = null ) : void
nickNameMasks IEnumerable /// A collection of wildcard expressions for matching against the nick names of /// users. ///
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
Résultat void

SendMessageWhoWas() protected méthode

Sends a request to perform a WhoWas query on users.
protected SendMessageWhoWas ( IEnumerable nickNames, int entriesCount = -1, string targetServer = null ) : void
nickNames IEnumerable /// A collection of wildcard expressions for matching against the nick names of /// users. ///
entriesCount int The maximum number of (most recent) entries to return.
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
Résultat void

SendRawMessage() public méthode

Sends the specified raw message to the server.
The current instance has already been disposed. is .
public SendRawMessage ( string message ) : void
message string The text (single line) of the message to send the server.
Résultat void

ToString() public méthode

Returns a string representation of this instance.
public ToString ( ) : string
Résultat string

WriteMessage() protected méthode

Writes the specified message (prefix, command, and parameters) to the network stream.
/// contains more than 15 many parameters. /// /// The value of of /// is invalid. /// /// The value of one of the items of of /// is invalid. /// The current instance has already been disposed.
protected WriteMessage ( IrcMessage message ) : void
message IrcMessage The message to write.
Résultat void

WriteMessage() protected méthode

protected WriteMessage ( string line, object token = null ) : void
line string
token object
Résultat void

WriteMessage() protected méthode

The current instance has already been disposed.
protected WriteMessage ( string prefix, string command ) : void
prefix string The message prefix that represents the source of the message.
command string The name of the command.
Résultat void

WriteMessage() protected méthode

The current instance has already been disposed.
protected WriteMessage ( string prefix, string command, IEnumerable parameters ) : void
prefix string
command string
parameters IEnumerable
Résultat void

Property Details

DefaultPort public_oe static_oe property

public static int DefaultPort
Résultat int

isRegistered protected_oe property

protected bool isRegistered
Résultat bool

isupportPrefix protected_oe static_oe property

protected static string isupportPrefix
Résultat string

localUser protected_oe property

protected IrcLocalUser localUser
Résultat IrcLocalUser

motdBuilder protected_oe property

protected StringBuilder motdBuilder
Résultat StringBuilder

regexChannelName protected_oe static_oe property

protected static string regexChannelName
Résultat string

regexHostName protected_oe static_oe property

protected static string regexHostName
Résultat string

regexMessagePrefix protected_oe static_oe property

protected static string regexMessagePrefix
Résultat string

regexMessageTarget protected_oe static_oe property

protected static string regexMessageTarget
Résultat string

regexNickName protected_oe static_oe property

protected static string regexNickName
Résultat string

regexNickNameId protected_oe static_oe property

protected static string regexNickNameId
Résultat string

regexServerName protected_oe static_oe property

protected static string regexServerName
Résultat string

regexTargetMask protected_oe static_oe property

protected static string regexTargetMask
Résultat string

regexUserName protected_oe static_oe property

protected static string regexUserName
Résultat string

regexUserNameId protected_oe static_oe property

protected static string regexUserNameId
Résultat string