本文整理汇总了C#中Supay.Irc.Messages.MessageConduit类的典型用法代码示例。如果您正苦于以下问题:C# MessageConduit类的具体用法?C# MessageConduit怎么用?C# MessageConduit使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
MessageConduit类属于Supay.Irc.Messages命名空间,在下文中一共展示了MessageConduit类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Notify
/// <summary>
/// Notifies the given <see cref="MessageConduit" /> by raising the appropriate event for the current <see cref="IrcMessage" /> subclass.
/// </summary>
public override void Notify(MessageConduit conduit)
{
conduit.OnMonitoredUserOffline(new IrcMessageEventArgs<MonitoredUserOfflineMessage>(this));
}
示例2: Notify
/// <summary>
/// Notifies the given <see cref="MessageConduit" /> by raising the appropriate event for the current <see cref="IrcMessage" /> subclass.
/// </summary>
public override void Notify(MessageConduit conduit)
{
conduit.OnWatchedUserOnline(new IrcMessageEventArgs<WatchedUserOnlineMessage>(this));
}
示例3: Notify
/// <summary>
/// Notifies the given <see cref="MessageConduit" /> by raising the appropriate event for the current <see cref="IrcMessage" /> subclass.
/// </summary>
public override void Notify(MessageConduit conduit)
{
conduit.OnNoSuchServer(new IrcMessageEventArgs<NoSuchServerMessage>(this));
}
示例4: Notify
/// <summary>
/// Notifies the given <see cref="MessageConduit" /> by raising the appropriate event for the
/// current <see cref="IrcMessage" /> subclass.
/// </summary>
public override void Notify(MessageConduit conduit)
{
conduit.OnDccAcceptRequest(new IrcMessageEventArgs<DccAcceptRequestMessage>(this));
}
示例5: Notify
/// <summary>
/// Notifies the given <see cref="MessageConduit" /> by raising the appropriate event for the current <see cref="IrcMessage" /> subclass.
/// </summary>
public override void Notify(MessageConduit conduit)
{
conduit.OnTime(new IrcMessageEventArgs<TimeMessage>(this));
}
示例6: Notify
/// <summary>
/// Notifies the given <see cref="MessageConduit" /> by raising the appropriate event for the
/// current <see cref="IrcMessage" /> subclass.
/// </summary>
public override void Notify(MessageConduit conduit)
{
conduit.OnAcceptListReply(new IrcMessageEventArgs<AcceptListReplyMessage>(this));
}
示例7: Notify
/// <summary>
/// Notifies the given <see cref="MessageConduit" /> by raising the appropriate event for the current <see cref="IrcMessage" /> subclass.
/// </summary>
public override void Notify(MessageConduit conduit)
{
conduit.OnChannelIsInviteOnly(new IrcMessageEventArgs<ChannelIsInviteOnlyMessage>(this));
}
示例8: Notify
/// <summary>
/// Notifies the given <see cref="MessageConduit" /> by raising the appropriate event for the current <see cref="IrcMessage" /> subclass.
/// </summary>
public override void Notify(MessageConduit conduit)
{
conduit.OnChannelCreationTime(new IrcMessageEventArgs<ChannelCreationTimeMessage>(this));
}
示例9: Notify
/// <summary>
/// Notifies the given <see cref="MessageConduit" /> by raising the appropriate event for the current <see cref="IrcMessage" /> subclass.
/// </summary>
public override void Notify(MessageConduit conduit)
{
conduit.OnUserHost(new IrcMessageEventArgs<UserHostMessage>(this));
}
示例10: Notify
/// <summary>
/// Notifies the given <see cref="MessageConduit" /> by raising the appropriate event for the current <see cref="IrcMessage" /> subclass.
/// </summary>
public override void Notify(MessageConduit conduit)
{
conduit.OnWasNoSuchNick(new IrcMessageEventArgs<WasNoSuchNickMessage>(this));
}
示例11: Notify
/// <summary>
/// Notifies the given <see cref="MessageConduit" /> by raising the appropriate event for the current <see cref="IrcMessage" /> subclass.
/// </summary>
public override void Notify(MessageConduit conduit)
{
conduit.OnKill(new IrcMessageEventArgs<KillMessage>(this));
}
示例12: Notify
/// <summary>
/// Notifies the given <see cref="MessageConduit" /> by raising the appropriate event for the current <see cref="IrcMessage" /> subclass.
/// </summary>
public override void Notify(MessageConduit conduit)
{
conduit.OnSlotsRequest(new IrcMessageEventArgs<SlotsRequestMessage>(this));
}
示例13: Notify
/// <summary>
/// Notifies the given <see cref="MessageConduit" /> by raising the appropriate event for the current <see cref="IrcMessage" /> subclass.
/// </summary>
public override void Notify(MessageConduit conduit)
{
conduit.OnGenericCtcpReply(new IrcMessageEventArgs<GenericCtcpReplyMessage>(this));
}
示例14: Notify
/// <summary>
/// Notifies the given <see cref="MessageConduit" /> by raising the appropriate event for the current <see cref="IrcMessage" /> subclass.
/// </summary>
public override void Notify(MessageConduit conduit)
{
conduit.OnTopicNoneReply(new IrcMessageEventArgs<TopicNoneReplyMessage>(this));
}
示例15: Notify
/// <summary>
/// Notifies the given <see cref="MessageConduit" /> by raising the appropriate event for the current <see cref="IrcMessage" /> subclass.
/// </summary>
public override void Notify(MessageConduit conduit)
{
conduit.OnNickCollision(new IrcMessageEventArgs<NickCollisionMessage>(this));
}