Thresher 1.2 Class Documentation

Sender.Ison Method 

Request to know if a user is currenlty on IRC.

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

Parameters

nick
Target user.

Remarks

Possible Errors

Exceptions

Exception TypeCondition
ArgumentExceptionIf the nickname is not valid.

Example

            //Query for a nick
            connection.Sender.Ison( "joe" );
            

See Also

Sender Class | Sharkbite.Irc Namespace | OnIson