internal GattDescriptor(GattDeviceDescriptor descriptor, GattCharacteristic characteristic)
 {
     this.descriptor = descriptor;
     Characteristic  = characteristic;
 }
Esempio n. 2
0
 public GattDescriptor(Native native, IGattCharacteristic characteristic) : base(characteristic, native.Uuid.ToString())
     => this.native = native;
Esempio n. 3
0
 private GattDescriptor(Windows.Devices.Bluetooth.GenericAttributeProfile.GattDescriptor descriptor)
 {
     _descriptor = descriptor;
 }