Thresher 1.2 Class Documentation

Sender.Info Method (String)

Request information about the software of the target IRC server.

[Visual Basic]
Overloads Public Sub Info( _
   ByVal target As String _
)
[C#]
public void Info(
   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 describing the server: its version, when it was compiled, the patchlevel, when it was started, and any other miscellaneous information which may be considered relevant.

Possible Errors

Example

            //Query a specific server
            connection.Sender.Info( "sunray.sharkbite.org" );
            //Query the server Bob is connected to
            connection.Sender.Info("Bob");
            

See Also

Sender Class | Sharkbite.Irc Namespace | Sender.Info Overload List | OnInfo