コード例 #1
0
 public bool TryGetHandler(EventName eventName, out IHandler handler)
 {
     Contract.Requires(eventName != null);
     throw new System.NotImplementedException();
 }
コード例 #2
0
 void IMessagingContext.PublishToAll(EventName name, ResponseBase response)
 {
     Contract.Requires(name != null);
     Contract.Requires(response != null);
     throw new System.NotImplementedException();
 }
コード例 #3
0
 public void AddHandler <THandler>(EventName eventName) where THandler : class, IHandler
 {
     Contract.Requires(eventName != null);
     throw new System.NotImplementedException();
 }