IrcDotNet.IrcClient.SendMessageTrace C# (CSharp) Method

SendMessageTrace() protected method

Sends a query to trace the route to the server.
protected SendMessageTrace ( string targetServer = null ) : void
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
return void
        protected void SendMessageTrace(string targetServer = null)
        {
            WriteMessage(null, "trace", targetServer);
        }
IrcClient