Exemplo n.º 1
0
 RemoteGattServer GetGatt()
 {
     if (_remoteGattServer == null)
     {
         _remoteGattServer = new RemoteGattServer(this);
     }
     return(_remoteGattServer);
 }
Exemplo n.º 2
0
        RemoteGattServer GetGatt()
        {
            if (_gatt == null)
            {
                _gatt = new RemoteGattServer(this);
            }

            return(_gatt);
        }
Exemplo n.º 3
0
        RemoteGattServer GetGatt()
        {
            if (_gattServer is null)
            {
                _gattServer = new RemoteGattServer(this);
            }

            return(_gattServer);
        }
Exemplo n.º 4
0
 internal GattCallback(RemoteGattServer owner)
 {
     _owner = owner;
 }