本文整理匯總了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));
}