Method | Description | |
---|---|---|
GetModes ( ) : void |
Requests a list of the current modes of the user.
|
|
SendMessage ( IEnumerable |
|
|
SendMessage ( IEnumerable |
Sends a message to the specified target.
|
|
SendMessage ( IIrcMessageTarget target, string text ) : void | ||
SendMessage ( string target, string text ) : void | ||
SendNotice ( IEnumerable |
|
|
SendNotice ( IEnumerable |
Sends a notice to the specified target.
|
|
SendNotice ( IIrcMessageTarget target, string text ) : void | ||
SendNotice ( string target, string text ) : void | ||
SetAway ( string text ) : void |
Sets the local user as away, giving the specified message.
|
|
SetModes ( ) : void | ||
SetModes ( IEnumerable |
||
SetModes ( IEnumerable |
||
SetModes ( string modes ) : void |
Sets the specified modes on the local user.
|
|
SetNickName ( string nickName ) : void |
Sets the nick name of the local user to the specified text.
|
|
UnsetAway ( ) : void |
Sets the local user as here (no longer away).
|
Method | Description | |
---|---|---|
OnJoinedChannel ( |
Raises the JoinedChannel event.
|
|
OnLeftChannel ( |
Raises the LeftChannel event.
|
|
OnMessageReceived ( |
Raises the MessageReceived event.
|
|
OnMessageSent ( |
Raises the MessageSent event.
|
|
OnModesChanged ( |
Raises the ModesChanged event.
|
|
OnNoticeReceived ( |
Raises the NoticeReceived event.
|
|
OnNoticeSent ( |
Raises the NoticeSent event.
|
|
OnPreviewMessageReceived ( |
Raises the PreviewMessageReceived event.
|
|
OnPreviewNoticeReceived ( |
Raises the PreviewNoticeReceived event.
|
Method | Description | |
---|---|---|
HandleJoinedChannel ( |
||
HandleLeftChannel ( |
||
HandleMessageReceived ( IIrcMessageSource source, IList |
||
HandleMessageSent ( IList |
||
HandleModesChanged ( string newModes ) : void | ||
HandleNoticeReceived ( IIrcMessageSource source, IList |
||
HandleNoticeSent ( IList |
||
IIrcMessageReceiveHandler ( IIrcMessageSource source, IList |
||
IIrcMessageSendHandler ( IList |
||
IrcLocalUser ( string nickName, string distribution, string description ) : System | ||
IrcLocalUser ( string nickName, string userName, string realName, IEnumerable |
protected OnJoinedChannel ( |
||
e | The |
|
return | void |
protected OnLeftChannel ( |
||
e | The |
|
return | void |
protected OnMessageReceived ( |
||
e | The |
|
return | void |
protected OnMessageSent ( |
||
e | The |
|
return | void |
protected OnModesChanged ( |
||
e | The |
|
return | void |
protected OnNoticeReceived ( |
||
e | The |
|
return | void |
protected OnNoticeSent ( |
||
e | The |
|
return | void |
protected OnPreviewMessageReceived ( |
||
e | The |
|
return | void |
protected OnPreviewNoticeReceived ( |
||
e | The |
|
return | void |
public SendMessage ( IEnumerable |
||
targets | IEnumerable |
A collection of targets to which to send the message. |
text | string | |
return | void |
public SendMessage ( IEnumerable |
||
targets | IEnumerable |
A collection of the names of targets to which to send the message. |
text | string | The ASCII-encoded text of the message to send. |
encoding | The encoding in which to send the value of |
|
return | void |
public SendMessage ( IIrcMessageTarget target, string text ) : void | ||
target | IIrcMessageTarget | The |
text | string | |
return | void |
public SendMessage ( string target, string text ) : void | ||
target | string | The name of the target to which to send the message. |
text | string | |
return | void |
public SendNotice ( IEnumerable |
||
targets | IEnumerable |
A collection of targets to which to send the notice. |
text | string | |
return | void |
public SendNotice ( IEnumerable |
||
targets | IEnumerable |
A collection of the names of targets to which to send the notice. |
text | string | The ASCII-encoded text of the notice to send. |
encoding | The encoding in which to send the value of |
|
return | void |
public SendNotice ( IIrcMessageTarget target, string text ) : void | ||
target | IIrcMessageTarget | The |
text | string | |
return | void |
public SendNotice ( string target, string text ) : void | ||
target | string | The name of the target to which to send the notice. |
text | string | |
return | void |
public SetAway ( string text ) : void | ||
text | string | The text of the response sent to a user when they try to message you while away. |
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 |
|
return | void |
public SetModes ( string modes ) : void | ||
modes | string | /// The mode string that specifies mode changes, which takes the form /// `( "+" / "-" ) *( mode character )`. /// |
return | void |
public SetNickName ( string nickName ) : void | ||
nickName | string | The new nick name of the local user. |
return | void |