當前位置: 首頁>>代碼示例>>C#>>正文


C# Messages.MessageConduit類代碼示例

本文整理匯總了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));
 }
開發者ID:alfaproject,項目名稱:Supay.Irc,代碼行數:7,代碼來源:MonitoredUserOfflineMessage.cs

示例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));
 }
開發者ID:alfaproject,項目名稱:Supay.Irc,代碼行數:7,代碼來源:WatchedUserOnlineMessage.cs

示例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));
 }
開發者ID:alfaproject,項目名稱:Supay.Irc,代碼行數:7,代碼來源:NoSuchServerMessage.cs

示例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));
 }
開發者ID:alfaproject,項目名稱:Supay.Irc,代碼行數:8,代碼來源:DccAcceptRequestMessage.cs

示例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));
 }
開發者ID:alfaproject,項目名稱:Supay.Irc,代碼行數:7,代碼來源:TimeMessage.cs

示例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));
 }
開發者ID:alfaproject,項目名稱:Supay.Irc,代碼行數:8,代碼來源:AcceptListReplyMessage.cs

示例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));
 }
開發者ID:alfaproject,項目名稱:Supay.Irc,代碼行數:7,代碼來源:ChannelIsInviteOnlyMessage.cs

示例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));
 }
開發者ID:alfaproject,項目名稱:Supay.Irc,代碼行數:7,代碼來源:ChannelCreationTimeMessage.cs

示例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));
 }
開發者ID:alfaproject,項目名稱:Supay.Irc,代碼行數:7,代碼來源:UserHostMessage.cs

示例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));
 }
開發者ID:alfaproject,項目名稱:Supay.Irc,代碼行數:7,代碼來源:WasNoSuchNickMessage.cs

示例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));
 }
開發者ID:alfaproject,項目名稱:Supay.Irc,代碼行數:7,代碼來源:KillMessage.cs

示例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));
 }
開發者ID:alfaproject,項目名稱:Supay.Irc,代碼行數:7,代碼來源:SlotsRequestMessage.cs

示例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));
 }
開發者ID:alfaproject,項目名稱:Supay.Irc,代碼行數:7,代碼來源:GenericCtcpReplyMessage.cs

示例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));
 }
開發者ID:alfaproject,項目名稱:Supay.Irc,代碼行數:7,代碼來源:TopicNoneReplyMessage.cs

示例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));
 }
開發者ID:alfaproject,項目名稱:Supay.Irc,代碼行數:7,代碼來源:NickCollisionMessage.cs


注:本文中的Supay.Irc.Messages.MessageConduit類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。