コード例 #1
0
ファイル: BluetoothConnection.cs プロジェクト: BoBiene/Nuki
 public BluetoothConnection this[string strDeviceName]
 {
     get
     {
         BluetoothConnection connection = null;
         if (!s_Connections.TryGetValue(strDeviceName, out connection))
         {
             s_Connections.TryAdd(strDeviceName, new BluetoothConnection(strDeviceName));
             s_Connections.TryGetValue(strDeviceName, out connection);
         }
         else
         {
         }
         return(connection);
     }
 }
コード例 #2
0
 public BluetoothGattCharacteristicConnection(BluetoothConnection connection)
 {
     Connection = connection;
 }
コード例 #3
0
 public BluetoothGattCharacteristicConnectionEncrypted(BluetoothConnection connection)
     : base(connection)
 {
 }
コード例 #4
0
 public BluetoothGattCharacteristicConnectionPlain(BluetoothConnection connection)
     : base(connection)
 {
 }