コード例 #1
0
 public static bool CanNotify(this IGattCharacteristic ch) =>
 ch.Properties.HasFlag(CharacteristicProperties.Notify) ||
 ch.Properties.HasFlag(CharacteristicProperties.NotifyEncryptionRequired) ||
 ch.CanIndicate();
コード例 #2
0
 public static bool CanNotifyOrIndicate(this IGattCharacteristic ch) => ch.CanNotify() || ch.CanIndicate();