IrcDotNet.IrcClient.GetNetworkInfo C# (CSharp) Method

GetNetworkInfo() public method

Requests statistics about the connected IRC network. If serverMask is specified, then the server only returns information about the part of the network formed by the servers whose names match the mask; otherwise, the information concerns the whole network
The current instance has already been disposed.
public GetNetworkInfo ( string serverMask = null, string targetServer = null ) : void
serverMask string /// A wildcard expression for matching against server names, or /// to match the entire network. ///
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
return void
        public void GetNetworkInfo(string serverMask = null, string targetServer = null)
        {
            CheckDisposed();

            SendMessageLUsers(serverMask, targetServer);
        }
IrcClient