Squishy.Irc.IrcClient.Send C# (CSharp) Method

Send() public method

Uses the Client.Send(string) to enqueue the corresponding text into the ThrottledSendQueue.
public Send ( string text ) : void
text string
return void
        public void Send(string text, params object[] args)
        {
            Client.Send(string.Format(text, args));
        }