예제 #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)
 {
 }