Example #1
0
 public static bool IsCustomSound(this NotificationSound sound)
 => !(
     sound.Equals(NotificationSound.None) ||
     sound.Equals(NotificationSound.DefaultSystem) ||
     sound.Equals(NotificationSound.DefaultPriority)
     );
Example #2
0
 public static bool IsCustomSound(this NotificationSound sound) => sound != null && sound.Type == NotificationSoundType.Custom;