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

BeforeSendNotify() private method

private BeforeSendNotify ( string text ) : void
text string
return void
        internal void BeforeSendNotify(string text)
        {
            OnBeforeSend(text);
        }

Usage Example

Example #1
0
        internal void SendLineNow(string line)
        {
            if (!IsConnected)
            {
                return;
            }

            m_irc.BeforeSendNotify(line);
            base.SendNow(line + "\r\n");
        }