コード例 #1
0
 public BISPushChannel(BISPushChannelSettings channelSettings)
 {
     BisSettings = channelSettings;
 }
コード例 #2
0
 public BISPushService(IPushChannelFactory pushChannelFactory, BISPushChannelSettings channelSettings)
     : this(pushChannelFactory, channelSettings, default(IPushServiceSettings))
 {
 }
コード例 #3
0
 public BISPushService(IPushChannelFactory pushChannelFactory, BISPushChannelSettings channelSettings, IPushServiceSettings serviceSettings)
     : base(pushChannelFactory ?? new BISPushChannelFactory(), channelSettings ?? new BISPushChannelSettings(), serviceSettings)
 {
 }
コード例 #4
0
 public BISPushService(BISPushChannelSettings channelSettings, IPushServiceSettings serviceSettings)
     : this(default(IPushChannelFactory), channelSettings, serviceSettings)
 {
 }