Esempio n. 1
0
 public BISPushChannel(BISPushChannelSettings channelSettings)
 {
     BisSettings = channelSettings;
 }
Esempio n. 2
0
 public BISPushService(IPushChannelFactory pushChannelFactory, BISPushChannelSettings channelSettings)
     : this(pushChannelFactory, channelSettings, default(IPushServiceSettings))
 {
 }
Esempio n. 3
0
 public BISPushService(IPushChannelFactory pushChannelFactory, BISPushChannelSettings channelSettings, IPushServiceSettings serviceSettings)
     : base(pushChannelFactory ?? new BISPushChannelFactory(), channelSettings ?? new BISPushChannelSettings(), serviceSettings)
 {
 }
Esempio n. 4
0
 public BISPushService(BISPushChannelSettings channelSettings, IPushServiceSettings serviceSettings)
     : this(default(IPushChannelFactory), channelSettings, serviceSettings)
 {
 }