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