예제 #1
0
 internal BluetoothRemoteGATTServer(BluetoothDevice device)
 {
     Device = device;
     PlatformInit();
 }
예제 #2
0
 internal GattService(BluetoothDevice device, CBService service) : this(device)
 {
     _service = service;
 }
예제 #3
0
 internal GattService(BluetoothDevice device, WBluetooth.GattDeviceService service, bool isPrimary) : this(device)
 {
     _service   = service;
     _isPrimary = isPrimary;
 }
예제 #4
0
 internal GattService(BluetoothDevice device, WBluetooth.GattDeviceService service, bool isPrimary) : this(device)
 {
     _service   = service;
     _isPrimary = isPrimary;
     device.AddDisposableObject(this, service);
 }
예제 #5
0
 internal RemoteGattServer(BluetoothDevice device)
 {
     Device = device;
     PlatformInit();
 }
예제 #6
0
 internal BluetoothAdvertisingEvent(BluetoothDevice device)
 {
     Device = device;
 }
예제 #7
0
 internal BluetoothRemoteGATTServer(BluetoothDevice device, ABluetooth.BluetoothDevice bluetoothDevice) : this(device)
 {
     _gattCallback = new GattCallback(this);
     NativeGatt    = bluetoothDevice.ConnectGatt(Android.App.Application.Context, false, _gattCallback);
 }
예제 #8
0
 internal GattService(BluetoothDevice device)
 {
     Device = device;
 }
예제 #9
0
 internal BluetoothRemoteGATTServer(BluetoothDevice device)
 {
     Device = device;
 }
예제 #10
0
 internal BluetoothAdvertisingEvent(BluetoothDevice device, byte rssi, BluetoothLEAdvertisement advertisement) : this(device)
 {
     _rssi          = rssi;
     _advertisement = advertisement;
 }