BeforeSendNotify() private method

private BeforeSendNotify ( string text ) : void
text string
return void
コード例 #1
0
ファイル: Client.cs プロジェクト: WCell/WCell-UtilityBot
        internal void SendLineNow(string line)
        {
            if (!IsConnected)
            {
                return;
            }

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