Property | Type | Description | |
---|---|---|---|
HandleMessageReceived | void | ||
HandleModesChanged | void | ||
HandleNoticeReceived | void | ||
HandleTopicChanged | void | ||
HandleTypeChanged | void | ||
HandleUserInvited | void | ||
HandleUserJoined | void | ||
HandleUserKicked | void | ||
HandleUserKicked | void | ||
HandleUserLeft | void | ||
HandleUserLeft | void | ||
HandleUserNameReply | void | ||
HandleUserQuit | void | ||
HandleUsersListReceived | void | ||
IIrcMessageReceiveHandler | void | ||
IrcChannel | System |
Method | Description | |
---|---|---|
GetChannelUser ( |
Gets the IrcChannelUser in the channel that corresponds to the specified IrcUser, or
|
|
GetModes ( string modes = null ) : void |
Requests a list of the current modes of the channel, or if modes is specified, the settings for the specified modes.
|
|
GetTopic ( ) : void |
Requests the current topic of the channel.
|
|
Invite ( |
||
Invite ( string userNickName ) : void |
Invites the the specified user to the channel.
|
|
Kick ( string userNickName, string comment = null ) : void |
Kicks the specified user from the channel, giving the specified comment.
|
|
Leave ( string comment = null ) : void |
Leaves the channel, giving the specified comment.
|
|
SetModes ( ) : void | ||
SetModes ( IEnumerable |
||
SetModes ( IEnumerable |
||
SetModes ( string modes ) : void | ||
SetModes ( string modes, IEnumerable |
Sets the specified modes on the channel.
|
|
SetTopic ( string newTopic ) : void |
Sets the topic of the channel to the specified text.
|
|
ToString ( ) : string |
Returns a string representation of this instance.
|
Method | Description | |
---|---|---|
OnMessageReceived ( |
Raises the MessageReceived event.
|
|
OnModesChanged ( |
Raises the ModesChanged event.
|
|
OnNoticeReceived ( |
Raises the NoticeReceived event.
|
|
OnPreviewMessageReceived ( |
Raises the PreviewMessageReceived event.
|
|
OnPreviewNoticeReceived ( |
Raises the PreviewNoticeReceived event.
|
|
OnPropertyChanged ( |
Raises the PropertyChanged event.
|
|
OnTopicChanged ( |
Raises the TopicChanged event.
|
|
OnUserInvited ( |
Raises the UserInvited event.
|
|
OnUserJoined ( |
Raises the UserJoined event.
|
|
OnUserKicked ( |
Raises the UserKicked event.
|
|
OnUserLeft ( |
Raises the UserLeft event.
|
|
OnUsersListReceived ( |
Raises the UsersListReceived event.
|
Method | Description | |
---|---|---|
HandleMessageReceived ( IIrcMessageSource source, IList |
||
HandleModesChanged ( |
||
HandleNoticeReceived ( IIrcMessageSource source, IList |
||
HandleTopicChanged ( |
||
HandleTypeChanged ( IrcChannelType type ) : void | ||
HandleUserInvited ( |
||
HandleUserJoined ( |
||
HandleUserKicked ( |
||
HandleUserKicked ( |
||
HandleUserLeft ( |
||
HandleUserLeft ( |
||
HandleUserNameReply ( |
||
HandleUserQuit ( |
||
HandleUsersListReceived ( ) : void | ||
IIrcMessageReceiveHandler ( IIrcMessageSource source, IList |
||
IrcChannel ( string name ) : System |
public GetChannelUser ( |
||
user | The |
|
return |
public GetModes ( string modes = null ) : void | ||
modes | string |
/// The modes for which to get the current settings, or |
return | void |
public Invite ( |
||
user | The user to invite to the channel | |
return | void |
public Invite ( string userNickName ) : void | ||
userNickName | string | The nick name of the user to invite. |
return | void |
public Kick ( string userNickName, string comment = null ) : void | ||
userNickName | string | The nick name of the user to kick from the channel. |
comment | string | The comment to give for the kick, or |
return | void |
public Leave ( string comment = null ) : void | ||
comment | string |
/// The comment to send the server upon leaving the channel, or |
return | void |
protected OnMessageReceived ( |
||
e | The |
|
return | void |
protected OnModesChanged ( |
||
e | The |
|
return | void |
protected OnNoticeReceived ( |
||
e | The |
|
return | void |
protected OnPreviewMessageReceived ( |
||
e | The |
|
return | void |
protected OnPreviewNoticeReceived ( |
||
e | The |
|
return | void |
protected OnPropertyChanged ( |
||
e | The |
|
return | void |
protected OnTopicChanged ( |
||
e | The |
|
return | void |
protected OnUserInvited ( |
||
e | The |
|
return | void |
protected OnUserJoined ( |
||
e | The |
|
return | void |
protected OnUserKicked ( |
||
e | The |
|
return | void |
protected OnUserLeft ( |
||
e | The |
|
return | void |
protected OnUsersListReceived ( |
||
e | The |
|
return | void |
public SetModes ( IEnumerable |
||
newModes | IEnumerable |
/// A collection of mode characters that should become the new modes. /// Any modes in the collection that are not currently set will be set, and any nodes not in the collection that /// are currently set will be unset. /// |
return | void |
public SetModes ( IEnumerable |
||
setModes | IEnumerable |
|
unsetModes | IEnumerable |
|
modeParameters | IEnumerable |
|
return | void |
public SetModes ( string modes, IEnumerable |
||
modes | string | /// The mode string that specifies mode changes, which takes the form /// `( "+" / "-" ) *( mode character )`. /// |
modeParameters | IEnumerable |
/// A collection of parameters to he modes, or |
return | void |
public SetTopic ( string newTopic ) : void | ||
newTopic | string | The new topic to set. |
return | void |