Thresher 1.2 Class Documentation

Sender.PrivateAction Method 

Send an action message to a user instead of a channel.

[Visual Basic]
Public Sub PrivateAction( _
   ByVal nick As String, _
   ByVal description As String _
)
[C#]
public void PrivateAction(
   string nick,
   string description
);

Parameters

nick
The target user.
description
A description of the action. If this is too long it will be truncated.

Exceptions

Exception TypeCondition
ArgumentExceptionIf the nickname is not valid. Will also be thrown if the description is null or empty.

See Also

Sender Class | Sharkbite.Irc Namespace | OnPrivateAction