apophis.SharpIRC.IrcClient.TopicEventArgs.TopicEventArgs C# (CSharp) Method

TopicEventArgs() private method

private TopicEventArgs ( IrcMessageData data, string channel, string topic ) : System
data IrcMessageData
channel string
topic string
return System
        internal TopicEventArgs(IrcMessageData data, string channel, string topic)
            : base(data)
        {
            Channel = channel;
            Topic = topic;
        }
TopicEventArgs