예제 #1
0
 internal GattCharacteristic(
     CBPeripheral peripheral,
     PeripheralDelegate @delegate,
     GattService service,
     CBCharacteristic characteristic)
 {
     this.peripheral     = peripheral;
     this.@delegate      = @delegate;
     Service             = service;
     this.characteristic = characteristic;
 }
예제 #2
0
 internal GattCharacteristic(GattDeviceCharacteristic characteristic, GattService service)
 {
     this.characteristic = characteristic;
     Service             = service;
 }