GattNativeDescriptorUuid.cs 752 B

12345678910111213141516171819
  1. namespace BluetoothLENet
  2. {
  3. /// <summary>
  4. /// This enum assists in finding a string representation of a BT SIG assigned value for Descriptor UUIDs
  5. /// Reference: https://developer.bluetooth.org/gatt/descriptors/Pages/DescriptorsHomePage.aspx
  6. /// </summary>
  7. public enum GattNativeDescriptorUuid : ushort
  8. {
  9. CharacteristicExtendedProperties = 0x2900,
  10. CharacteristicUserDescription = 0x2901,
  11. ClientCharacteristicConfiguration = 0x2902,
  12. ServerCharacteristicConfiguration = 0x2903,
  13. CharacteristicPresentationFormat = 0x2904,
  14. CharacteristicAggregateFormat = 0x2905,
  15. ValidRange = 0x2906,
  16. ExternalReportReference = 0x2907,
  17. ReportReference = 0x2908
  18. }
  19. }