IrcDotNet.IrcClient.GetMessageOfTheDay C# (CSharp) Method

GetMessageOfTheDay() public method

Requests the Message of the Day (MOTD) from the specified server.
The current instance has already been disposed.
public GetMessageOfTheDay ( string targetServer = null ) : void
targetServer string /// The name of the server from which to request the MOTD, or /// for the current server. ///
return void
        public void GetMessageOfTheDay(string targetServer = null)
        {
            CheckDisposed();

            SendMessageMotd(targetServer);
        }
IrcClient