IrcDotNet.IrcClient.GetServerVersion C# (CSharp) Method

GetServerVersion() public method

Requests the version of the specified server.
The current instance has already been disposed.
public GetServerVersion ( string targetServer = null ) : void
targetServer string The name of the server whose version to request.
return void
        public void GetServerVersion(string targetServer = null)
        {
            CheckDisposed();

            SendMessageVersion(targetServer);
        }
IrcClient