Thresher 1.2 Class Documentation

Sender.Names Method 

Request a list of all nicknames on a given channel.

[Visual Basic]
Public Sub Names( _
   ParamArray channels As String() _
)
[C#]
public void Names(
   params string[] channels
);

Parameters

channels
One or more channel names.

Remarks

Possible Errors

Exceptions

Exception TypeCondition
ArgumentExceptionIf any of the channels are not valid.

Example

            //Make the request for a single channel
            connection.Sender.Names( "#test" );
            //Make the request for several channels at once
            connection.Sender.Names( "#test","#alpha","#bravo" );
            

See Also

Sender Class | Sharkbite.Irc Namespace | OnNames