コード例 #1
0
 public void HandleEvent(NoticeEvent evt, ISession session)
 {
 }
コード例 #2
0
ファイル: Information.cs プロジェクト: FloppyDiskUser/WeezBot
 public void HandleEvent(NoticeEvent noticeEvent, ISession session)
 {
     Write(noticeEvent.ToString());
 }
コード例 #3
0
 private static void HandleEvent(NoticeEvent noticeEvent, ISession session)
 {
     Logger.Write(noticeEvent.ToString());
 }
コード例 #4
0
 public void Send(NoticeEvent message) =>
 _publisher.Publish(message);
コード例 #5
0
ファイル: WpfEventListener.cs プロジェクト: leeleonis/Cpko
 public void HandleEvent(NoticeEvent evt, ISession session)
 {
     Logger.Write(evt.ToString(), session: session);
 }
コード例 #6
0
ファイル: Notice.cs プロジェクト: streetlab/Liveball_baseball
 public void Init()
 {
     mPage        = 1;
     mNoticeEvent = new NoticeEvent(ReceivedNotice);
     NetMgr.GetNotice(mNoticeEvent);
 }
コード例 #7
0
 private static void HandleEvent(NoticeEvent noticeEvent, ISession session)
 {
     TestPostMessage(noticeEvent.ToString());
 }
コード例 #8
0
 protected virtual void OnNotice(RemoteServer server, ReasonEventArgs args)
 {
     NoticeEvent?.Invoke(server, args);
 }
コード例 #9
0
ファイル: IRC.cs プロジェクト: hnjm/IRC-Client
 protected virtual void RaiseNoticeEvent(TokenEventArgs e)
 {
     NoticeEvent?.Invoke(this, e);
 }
コード例 #10
0
ファイル: Notice.cs プロジェクト: streetlab/Liveball_baseball
 public void Init()
 {
     mPage = 1;
     mNoticeEvent = new NoticeEvent(ReceivedNotice);
     NetMgr.GetNotice(mNoticeEvent);
 }