public PushNotification WithPlatformOptions(IOsOptions options) { if (this.PlatformOptions == null) this.PlatformOptions = new PlatformOptions(); this.PlatformOptions.iOS = options; return this; }
public PushNotification WithPlatformOptions(IOsOptions options) { if (this.PlatformOptions == null) { this.PlatformOptions = new PlatformOptions(); } this.PlatformOptions.iOS = options; return(this); }
public PushNotification WithPlatformOptions(WindowsPhoneOptions options) { if (this.PlatformOptions == null) { this.PlatformOptions = new PlatformOptions(); } this.PlatformOptions.WindowsPhone = options; return(this); }
public PushNotification WithPlatformOptions(AndroidOptions options) { if (this.PlatformOptions == null) { this.PlatformOptions = new PlatformOptions(); } this.PlatformOptions.Android = options; return(this); }
public PushNotification WithPlatformOptions(WindowsPhoneOptions options) { if (this.PlatformOptions == null) this.PlatformOptions = new PlatformOptions(); this.PlatformOptions.WindowsPhone = options; return this; }
public PushNotification WithPlatformOptions(AndroidOptions options) { if (this.PlatformOptions == null) this.PlatformOptions = new PlatformOptions(); this.PlatformOptions.Android = options; return this; }