コード例 #1
0
 public PushNotification WithPlatformOptions(IOsOptions options)
 {
     if (this.PlatformOptions == null)
         this.PlatformOptions = new PlatformOptions();
     this.PlatformOptions.iOS = options;
     return this;
 }
コード例 #2
0
 public PushNotification WithPlatformOptions(IOsOptions options)
 {
     if (this.PlatformOptions == null)
     {
         this.PlatformOptions = new PlatformOptions();
     }
     this.PlatformOptions.iOS = options;
     return(this);
 }
コード例 #3
0
 public PushNotification WithPlatformOptions(WindowsPhoneOptions options)
 {
     if (this.PlatformOptions == null)
     {
         this.PlatformOptions = new PlatformOptions();
     }
     this.PlatformOptions.WindowsPhone = options;
     return(this);
 }
コード例 #4
0
 public PushNotification WithPlatformOptions(AndroidOptions options)
 {
     if (this.PlatformOptions == null)
     {
         this.PlatformOptions = new PlatformOptions();
     }
     this.PlatformOptions.Android = options;
     return(this);
 }
コード例 #5
0
 public PushNotification WithPlatformOptions(WindowsPhoneOptions options)
 {
     if (this.PlatformOptions == null)
         this.PlatformOptions = new PlatformOptions();
     this.PlatformOptions.WindowsPhone = options;
     return this;
 }
コード例 #6
0
 public PushNotification WithPlatformOptions(AndroidOptions options)
 {
     if (this.PlatformOptions == null)
         this.PlatformOptions = new PlatformOptions();
     this.PlatformOptions.Android = options;
     return this;
 }