コード例 #1
0
        void ReceiveHostTarget(IrcMessage message)
        {
            HostInformation hostinformation = CreateHostInformation(message);

            if (hostinformation.Channel != "-")
            {
                if (hostinformation.Host == name)
                {
                    Hosting?.Invoke(hostinformation);
                }
                else
                {
                    Host?.Invoke(hostinformation);
                }
            }
        }