Thresher 1.2 Class Documentation

Sender.Away Method 

Set the user status to away and set an automatic reply to any private message.

[Visual Basic]
Public Sub Away( _
   ByVal message As String _
)
[C#]
public void Away(
   string message
);

Parameters

message
The message that will be sent back to others when you are away. Overly long message will be truncated.

Remarks

This functions as a kind of IRC answering machine. It is normally used to indicate that the user is away from IRC.

Exceptions

Exception TypeCondition
ArgumentExceptionIf the message is null or empty.

See Also

Sender Class | Sharkbite.Irc Namespace | OnAway