コード例 #1
0
 public void TryConvertEvent(object sender, IIncomingEvent e)
 {
     if (e is IIncomingEvent <T> && EventEmitted != null)
     {
         EventEmitted(sender, e as IIncomingEvent <T>);
     }
 }
コード例 #2
0
 protected internal void EmitEvent(IIncomingEvent e)
 {
     if (EventEmitted != null)
     {
         EventEmitted(this, e);
     }
 }
コード例 #3
0
 private void _channel_EventEmitted(object sender, IIncomingEvent e)
 {
     Console.WriteLine("stuff");
 }
コード例 #4
0
			public new void EmitEvent(IIncomingEvent e)
			{
				base.EmitEvent(e);
			}
コード例 #5
0
ファイル: EventsTest.cs プロジェクト: velchev/Pusher.NET
 public new void EmitEvent(IIncomingEvent e)
 {
     base.EmitEvent(e);
 }