Ejemplo n.º 1
0
 internal BluetoothRemoteGATTServer(BluetoothDevice device)
 {
     Device = device;
     PlatformInit();
 }
Ejemplo n.º 2
0
 internal GattService(BluetoothDevice device, CBService service) : this(device)
 {
     _service = service;
 }
Ejemplo n.º 3
0
 internal GattService(BluetoothDevice device, WBluetooth.GattDeviceService service, bool isPrimary) : this(device)
 {
     _service   = service;
     _isPrimary = isPrimary;
 }
Ejemplo n.º 4
0
 internal GattService(BluetoothDevice device, WBluetooth.GattDeviceService service, bool isPrimary) : this(device)
 {
     _service   = service;
     _isPrimary = isPrimary;
     device.AddDisposableObject(this, service);
 }
Ejemplo n.º 5
0
 internal RemoteGattServer(BluetoothDevice device)
 {
     Device = device;
     PlatformInit();
 }
Ejemplo n.º 6
0
 internal BluetoothAdvertisingEvent(BluetoothDevice device)
 {
     Device = device;
 }
Ejemplo 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);
 }
Ejemplo n.º 8
0
 internal GattService(BluetoothDevice device)
 {
     Device = device;
 }
Ejemplo n.º 9
0
 internal BluetoothRemoteGATTServer(BluetoothDevice device)
 {
     Device = device;
 }
Ejemplo n.º 10
0
 internal BluetoothAdvertisingEvent(BluetoothDevice device, byte rssi, BluetoothLEAdvertisement advertisement) : this(device)
 {
     _rssi          = rssi;
     _advertisement = advertisement;
 }