Exemplo n.º 1
0
 public DowntimeMonitoringEnableSubscriber(
     ISubscriptionManager subscriptionManager,
     DowntimeMonitoringNotificationSubscriber downtimeMonitoringSubscriber)
 {
     if (subscriptionManager == null)
     {
         throw new ArgumentNullException(nameof(subscriptionManager));
     }
     if (downtimeMonitoringSubscriber == null)
     {
         throw new ArgumentNullException(nameof(downtimeMonitoringSubscriber));
     }
     this.subscriptionManager          = subscriptionManager;
     this.downtimeMonitoringSubscriber = downtimeMonitoringSubscriber;
 }
Exemplo n.º 2
0
 // Token: 0x060005F5 RID: 1525 RVA: 0x000239B6 File Offset: 0x00021BB6
 public DowntimeMonitoringEnableSubscriber(InformationServiceSubscriptionProviderBase subscriptionProvider, DowntimeMonitoringNotificationSubscriber downtimeMonitoringSubscriber)
 {
     if (subscriptionProvider == null)
     {
         throw new ArgumentNullException("subscriptionProvider");
     }
     if (downtimeMonitoringSubscriber == null)
     {
         throw new ArgumentNullException("downtimeMonitoringSubscriber");
     }
     this.subscriptionProvider         = subscriptionProvider;
     this.downtimeMonitoringSubscriber = downtimeMonitoringSubscriber;
 }
Exemplo n.º 3
0
 // Token: 0x060005F4 RID: 1524 RVA: 0x000239A8 File Offset: 0x00021BA8
 public DowntimeMonitoringEnableSubscriber(DowntimeMonitoringNotificationSubscriber downtimeMonitoringSubscriber) : this(InformationServiceSubscriptionProviderShared.Instance(), downtimeMonitoringSubscriber)
 {
 }
Exemplo n.º 4
0
 public DowntimeMonitoringEnableSubscriber(
     DowntimeMonitoringNotificationSubscriber downtimeMonitoringSubscriber)
     : this(SubscriptionManager.get_Instance(), downtimeMonitoringSubscriber)
 {
 }