Thresher 1.2 Class Documentation

Sender.Admin Method (String)

Request information about the administrator of the target IRC server.

[Visual Basic]
Overloads Public Sub Admin( _
   ByVal target As String _
)
[C#]
public void Admin(
   string target
);

Parameters

target
Either a user nickname or a specific IRC server connected to the current network. If it is a nickname then return the information about the server to which 'nick' is connected. Can include wildcards.

Remarks

This returns information such as the administrator's email address, geographical location and whatever else the IRC is configured to send as a response.

Possible Errors

Example

            //Request info about the administrator of the specified server
            connection.Sender.Admin( "sunray.sharkbite.org" );
            //Request info about the administrator of the server Bob is connected to
            connection.Sender.Admin("Bob");
            

See Also

Sender Class | Sharkbite.Irc Namespace | Sender.Admin Overload List | OnAdmin