Thresher 1.2 Class Documentation

Sender.List Method 

Request basic information about a channel, i.e. number of visible users and topic.

[Visual Basic]
Public Sub List( _
   ParamArray channels As String() _
)
[C#]
public void List(
   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.List( "#test" );
            //Make the request for several channels at once
            connection.Sender.List( "#test","#alpha",#"bravo" );
            

See Also

Sender Class | Sharkbite.Irc Namespace | OnList