Ejemplo n.º 1
0
        internal static Guid ToGuid(this CBUUID uuid)
        {
            byte[] b = new byte[16];

            switch (uuid.Data.Length)
            {
            case 2:
                b = new Guid("0x00000000, 0x0000, 0x1000, 0x80, 0x00, 0x00, 0x80, 0x5F, 0x9B, 0x34, 0xFB").ToByteArray();
                Marshal.Copy(uuid.Data.Bytes, b, 0, (int)uuid.Data.Length);

                break;

            default:

                Marshal.Copy(uuid.Data.Bytes, b, 0, (int)uuid.Data.Length);
                break;
            }

            return(new Guid(b));
        }
Ejemplo n.º 2
0
 internal static CBUUID ToCBUUID(this Guid guid)
 {
     return(CBUUID.FromBytes(guid.ToByteArray()));
 }
Ejemplo n.º 3
0
 public void ScanForPeripherals(CBUUID serviceUuid)
 {
     ScanForPeripherals(new [] { serviceUuid }, null as NSDictionary);
 }
Ejemplo n.º 4
0
 public void ScanForPeripherals(CBUUID serviceUuid, NSDictionary options)
 {
     ScanForPeripherals(new [] { serviceUuid }, options);
 }
Ejemplo n.º 5
0
 public void RetrievePeripherals(CBUUID peripheralUuid)
 => throw new NotSupportedException();
Ejemplo n.º 6
0
 public void RetrievePeripherals(CBUUID peripheralUuid)
 {
     RetrievePeripherals(new [] { peripheralUuid });
 }