コード例 #1
0
ファイル: RemoteEventsPublisher.cs プロジェクト: verely/CSRep
 public void RemoveSubscription(Type type, string methodName, string url)
 {
     SubscriptionsManager.RemoveSubscription(type, methodName, url, true);
 }
コード例 #2
0
ファイル: RemoteEventsPublisher.cs プロジェクト: verely/CSRep
 public void AddSubscription(Type type, string url)
 {
     SubscriptionsManager.AddSubscription(type, url);
 }
コード例 #3
0
ファイル: RemoteEventsPublisher.cs プロジェクト: verely/CSRep
 public void RemoveSubscription(Type type, string url)
 {
     SubscriptionsManager.RemoveSubscription(type, url);
 }
コード例 #4
0
 public ApplicationEventsSink()
 {
     SubscriptionsManager.SupportSubscription(typeof(IApplicationEventsSink));
 }