示例#1
0
 public C2dmPushChannel(C2dmPushChannelSettings channelSettings)
 {
     androidSettings = channelSettings;
 }
示例#2
0
 public C2dmPushService(IPushChannelFactory pushChannelFactory, C2dmPushChannelSettings channelSettings)
     : this(pushChannelFactory, channelSettings, default(IPushServiceSettings))
 {
 }
示例#3
0
 public C2dmPushService(IPushChannelFactory pushChannelFactory, C2dmPushChannelSettings channelSettings, IPushServiceSettings serviceSettings)
     : base(pushChannelFactory ?? new C2dmPushChannelFactory(), channelSettings, serviceSettings)
 {
 }
示例#4
0
 public C2dmPushService(C2dmPushChannelSettings channelSettings, IPushServiceSettings serviceSettings)
     : this(default(IPushChannelFactory), channelSettings, serviceSettings)
 {
 }