Exemplo n.º 1
0
 public void RemoveSubscription(Type type, string methodName, string url)
 {
     SubscriptionsManager.RemoveSubscription(type, methodName, url, true);
 }
Exemplo n.º 2
0
 public void AddSubscription(Type type, string url)
 {
     SubscriptionsManager.AddSubscription(type, url);
 }
Exemplo n.º 3
0
 public void RemoveSubscription(Type type, string url)
 {
     SubscriptionsManager.RemoveSubscription(type, url);
 }
Exemplo n.º 4
0
 public ApplicationEventsSink()
 {
     SubscriptionsManager.SupportSubscription(typeof(IApplicationEventsSink));
 }