BluetoothRemoteGATTServer GetGatt()
        {
            if (_gattServer is null)
            {
                _gattServer = new BluetoothRemoteGATTServer(this, _device);
            }

            return(_gattServer);
        }
Exemple #2
0
        BluetoothRemoteGATTServer GetGatt()
        {
            if (_gatt == null)
            {
                _gatt = new BluetoothRemoteGATTServer(this);
            }

            return(_gatt);
        }
 internal GattCallback(BluetoothRemoteGATTServer owner)
 {
     _owner = owner;
 }