GattCharacteristic
GattCharacteristic
GattCharacteristic
GattCharacteristic
Class
Definition
Represents a Characteristic of a GATT service. The GattCharacteristic object represents a GATT Characteristic of a particular service, and is obtained from the Characteristics property of the GattDeviceService object.
public : sealed class GattCharacteristic : IGattCharacteristic, IGattCharacteristic2, IGattCharacteristic3public sealed class GattCharacteristic : IGattCharacteristic, IGattCharacteristic2, IGattCharacteristic3Public NotInheritable Class GattCharacteristic Implements IGattCharacteristic, IGattCharacteristic2, IGattCharacteristic3// You can use this class in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0 - for Xbox, see UWP features that aren't yet supported on Xbox)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Properties
AttributeHandle AttributeHandle AttributeHandle AttributeHandle
Gets the handle used to uniquely identify GATT-based characteristic attributes as declared on the Bluetooth LE device.
public : ushort AttributeHandle { get; }public ushort AttributeHandle { get; }Public ReadOnly Property AttributeHandle As ushort// You can use this property in JavaScript.
- Value
- ushort ushort ushort ushort
Handle that uniquely identifies GATT-based characteristic attributes.
CharacteristicProperties CharacteristicProperties CharacteristicProperties CharacteristicProperties
Gets the GATT characteristic properties, as defined by the GATT profile.
If the ExtendedProperties flag is present it also represents the properties of the Extended Characteristic Properties Descriptor.
public : GattCharacteristicProperties CharacteristicProperties { get; }public GattCharacteristicProperties CharacteristicProperties { get; }Public ReadOnly Property CharacteristicProperties As GattCharacteristicProperties// You can use this property in JavaScript.
- Value
- GattCharacteristicProperties GattCharacteristicProperties GattCharacteristicProperties GattCharacteristicProperties
The GATT characteristic properties, as defined by the GATT profile.
PresentationFormats PresentationFormats PresentationFormats PresentationFormats
Gets the list of presentation format descriptors associated with this GattCharacteristic, in the order specified by the Aggregate Format Descriptor.
The list shall be empty if no PresentationFormat or Aggregate Format descriptors are found.
public : IVectorView<GattPresentationFormat> PresentationFormats { get; }public IReadOnlyList<GattPresentationFormat> PresentationFormats { get; }Public ReadOnly Property PresentationFormats As IReadOnlyList<GattPresentationFormat>// You can use this property in JavaScript.
- Value
- IVectorView<GattPresentationFormat> IReadOnlyList<GattPresentationFormat> IReadOnlyList<GattPresentationFormat> IReadOnlyList<GattPresentationFormat>
An array of GattPresentationFormat objects that contain the list of presentation format descriptors associated with this GattCharacteristic, in the order specified by the Aggregate Format Descriptor.
ProtectionLevel ProtectionLevel ProtectionLevel ProtectionLevel
Gets or sets the desired GATT security options for over the air communication with the device.
Windows will negotiate the maximum security possible with the device as part of the pairing process, and specifying a lower level of security won’t degrade the existing security level.
public : GattProtectionLevel ProtectionLevel { get; set; }public GattProtectionLevel ProtectionLevel { get; set; }Public ReadWrite Property ProtectionLevel As GattProtectionLevel// You can use this property in JavaScript.
The desired GATT security options for over the air communication with the device.
Service Service Service Service
Gets the GattDeviceService of which this characteristic is a member.
public : GattDeviceService Service { get; }public GattDeviceService Service { get; }Public ReadOnly Property Service As GattDeviceService// You can use this property in JavaScript.
The GattDeviceService of which this characteristic is a member.
UserDescription UserDescription UserDescription UserDescription
Get the user friendly description for this GattCharacteristic, if the User Description Descriptor is present, otherwise this will be an empty string.
public : PlatForm::String UserDescription { get; }public string UserDescription { get; }Public ReadOnly Property UserDescription As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The user friendly description for this GattCharacteristic, if the User Description Descriptor is present, otherwise this will be an empty string.
Uuid Uuid Uuid Uuid
Gets the GATT Characteristic UUID for this GattCharacteristic.
public : PlatForm::Guid Uuid { get; }public Guid Uuid { get; }Public ReadOnly Property Uuid As Guid// You can use this property in JavaScript.
- Value
- PlatForm::Guid Guid Guid Guid
The GATT Characteristic UUID for this GattCharacteristic.
Methods
ConvertShortIdToUuid(UInt16) ConvertShortIdToUuid(UInt16) ConvertShortIdToUuid(UInt16) ConvertShortIdToUuid(UInt16)
Converts a Bluetooth SIG defined short Id to a full GATT UUID.
public : static PlatForm::Guid ConvertShortIdToUuid(unsigned short shortId)public static Guid ConvertShortIdToUuid(UInt16 shortId)Public Static Function ConvertShortIdToUuid(shortId As UInt16) As Guid// You can use this method in JavaScript.
- shortId
- unsigned short UInt16 UInt16 UInt16
A 16-bit Bluetooth GATT Service UUID.
The corresponding 128-bit GATT Characteristic UUID, that uniquely identifies this characteristic.
GetAllDescriptors() GetAllDescriptors() GetAllDescriptors() GetAllDescriptors()
Gets the collection of all descriptors belonging to this GattCharacteristic instance.
public : IVectorView<GattDescriptor> GetAllDescriptors()public IReadOnlyList<GattDescriptor> GetAllDescriptors()Public Function GetAllDescriptors() As IReadOnlyList( Of GattDescriptor )// You can use this method in JavaScript.
The collection of all descriptors belonging to this GattCharacteristic instance.
GetDescriptors(Guid) GetDescriptors(Guid) GetDescriptors(Guid) GetDescriptors(Guid)
Returns a vector of descriptors, that are identified by the specified UUID, and belong to this GattCharacteristic instance.
public : IVectorView<GattDescriptor> GetDescriptors(PlatForm::Guid descriptorUuid)public IReadOnlyList<GattDescriptor> GetDescriptors(Guid descriptorUuid)Public Function GetDescriptors(descriptorUuid As Guid) As IReadOnlyList( Of GattDescriptor )// You can use this method in JavaScript.
- descriptorUuid
- PlatForm::Guid Guid Guid Guid
The UUID for the descriptors to be retrieved.
A vector of descriptors whose UUIDs match descriptorUuid.
GetDescriptorsAsync() GetDescriptorsAsync() GetDescriptorsAsync() GetDescriptorsAsync()
Returns the descriptors for this GattCharacteristic instance.
public : IAsyncOperation<GattDescriptorsResult> GetDescriptorsAsync()public IAsyncOperation<GattDescriptorsResult> GetDescriptorsAsync()Public Function GetDescriptorsAsync() As IAsyncOperation( Of GattDescriptorsResult )// You can use this method in JavaScript.
An asynchronous operation that completes with the descriptors for this GattCharacteristic instance.
| Device family |
Windows 10 Creators Update (introduced v10.0.15063.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v4)
|
GetDescriptorsAsync(BluetoothCacheMode) GetDescriptorsAsync(BluetoothCacheMode) GetDescriptorsAsync(BluetoothCacheMode) GetDescriptorsAsync(BluetoothCacheMode)
Returns the descriptors with the specified cache mode for this GattCharacteristic instance.
public : IAsyncOperation<GattDescriptorsResult> GetDescriptorsAsync(BluetoothCacheMode cacheMode)public IAsyncOperation<GattDescriptorsResult> GetDescriptorsAsync(BluetoothCacheMode cacheMode)Public Function GetDescriptorsAsync(cacheMode As BluetoothCacheMode) As IAsyncOperation( Of GattDescriptorsResult )// You can use this method in JavaScript.
The cache mode.
An asynchronous operation that completes with the descriptors.
| Device family |
Windows 10 Creators Update (introduced v10.0.15063.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v4)
|
GetDescriptorsForUuidAsync(Guid) GetDescriptorsForUuidAsync(Guid) GetDescriptorsForUuidAsync(Guid) GetDescriptorsForUuidAsync(Guid)
Returns the descriptors whose UUIDs match descriptorUuid.
public : IAsyncOperation<GattDescriptorsResult> GetDescriptorsForUuidAsync(PlatForm::Guid descriptorUuid)public IAsyncOperation<GattDescriptorsResult> GetDescriptorsForUuidAsync(Guid descriptorUuid)Public Function GetDescriptorsForUuidAsync(descriptorUuid As Guid) As IAsyncOperation( Of GattDescriptorsResult )// You can use this method in JavaScript.
- descriptorUuid
- PlatForm::Guid Guid Guid Guid
The UUID for the descriptors to be retrieved.
An asynchronous operation that completes with the descriptors whose UUIDs match descriptorUuid.
| Device family |
Windows 10 Creators Update (introduced v10.0.15063.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v4)
|
GetDescriptorsForUuidAsync(Guid, BluetoothCacheMode) GetDescriptorsForUuidAsync(Guid, BluetoothCacheMode) GetDescriptorsForUuidAsync(Guid, BluetoothCacheMode) GetDescriptorsForUuidAsync(Guid, BluetoothCacheMode)
Returns the descriptors whose UUIDs match descriptorUuid with the specified cacheMode.
public : IAsyncOperation<GattDescriptorsResult> GetDescriptorsForUuidAsync(PlatForm::Guid descriptorUuid, BluetoothCacheMode cacheMode)public IAsyncOperation<GattDescriptorsResult> GetDescriptorsForUuidAsync(Guid descriptorUuid, BluetoothCacheMode cacheMode)Public Function GetDescriptorsForUuidAsync(descriptorUuid As Guid, cacheMode As BluetoothCacheMode) As IAsyncOperation( Of GattDescriptorsResult )// You can use this method in JavaScript.
- descriptorUuid
- PlatForm::Guid Guid Guid Guid
The UUID for the descriptors to be retrieved.
The cache mode.
Returns an asynchronous operation that completes with the descriptors for the descriptorUuid.
| Device family |
Windows 10 Creators Update (introduced v10.0.15063.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v4)
|
ReadClientCharacteristicConfigurationDescriptorAsync() ReadClientCharacteristicConfigurationDescriptorAsync() ReadClientCharacteristicConfigurationDescriptorAsync() ReadClientCharacteristicConfigurationDescriptorAsync()
Reads the current value of the ClientCharacteristicConfigurationDescriptor.
public : IAsyncOperation<GattReadClientCharacteristicConfigurationDescriptorResult> ReadClientCharacteristicConfigurationDescriptorAsync()public IAsyncOperation<GattReadClientCharacteristicConfigurationDescriptorResult> ReadClientCharacteristicConfigurationDescriptorAsync()Public Function ReadClientCharacteristicConfigurationDescriptorAsync() As IAsyncOperation( Of GattReadClientCharacteristicConfigurationDescriptorResult )// You can use this method in JavaScript.
The object that manages the asynchronous operation. Upon completion of the asynchronous method, the IAsyncOperation(GattReadClientCharacteristicConfigurationDescriptorResult) contains the result of the read operation, which contains the status of completed operation. The Status property on the GattReadClientCharacteristicConfigurationDescriptorResult returned indicates if the result of the operation was successful.
ReadValueAsync() ReadValueAsync() ReadValueAsync() ReadValueAsync()
Performs a Characteristic Value read from the value cache maintained by Windows.
public : IAsyncOperation<GattReadResult> ReadValueAsync()public IAsyncOperation<GattReadResult> ReadValueAsync()Public Function ReadValueAsync() As IAsyncOperation( Of GattReadResult )// You can use this method in JavaScript.
The object required to manage the asynchronous operation, which, upon completion, returns a GattReadResult object, which in turn contains the completion status of the asynchronous operation and, if successful, the data read from the device.
- See Also
ReadValueAsync(BluetoothCacheMode) ReadValueAsync(BluetoothCacheMode) ReadValueAsync(BluetoothCacheMode) ReadValueAsync(BluetoothCacheMode)
Performs a Characteristic Value read either from the value cache maintained by Windows, or directly from the device.
public : IAsyncOperation<GattReadResult> ReadValueAsync(BluetoothCacheMode cacheMode)public IAsyncOperation<GattReadResult> ReadValueAsync(BluetoothCacheMode cacheMode)Public Function ReadValueAsync(cacheMode As BluetoothCacheMode) As IAsyncOperation( Of GattReadResult )// You can use this method in JavaScript.
Specifies whether to read the value directly from the device or from a value cache maintained by Windows.
The object required to manage the asynchronous operation, which, upon completion, returns a GattReadResult object, which in turn contains the completion status of the asynchronous operation and, if successful, the data read from the device.
- See Also
WriteClientCharacteristicConfigurationDescriptorAsync(GattClientCharacteristicConfigurationDescriptorValue) WriteClientCharacteristicConfigurationDescriptorAsync(GattClientCharacteristicConfigurationDescriptorValue) WriteClientCharacteristicConfigurationDescriptorAsync(GattClientCharacteristicConfigurationDescriptorValue) WriteClientCharacteristicConfigurationDescriptorAsync(GattClientCharacteristicConfigurationDescriptorValue)
Writes the ClientCharacteristicConfigurationDescriptor to the Bluetooth LE device, and if the value to be written represents an indication or a notification and a ValueChanged event handler is registered, enables receiving ValueChanged events from the device.
public : IAsyncOperation<GattCommunicationStatus> WriteClientCharacteristicConfigurationDescriptorAsync(GattClientCharacteristicConfigurationDescriptorValue clientCharacteristicConfigurationDescriptorValue)public IAsyncOperation<GattCommunicationStatus> WriteClientCharacteristicConfigurationDescriptorAsync(GattClientCharacteristicConfigurationDescriptorValue clientCharacteristicConfigurationDescriptorValue)Public Function WriteClientCharacteristicConfigurationDescriptorAsync(clientCharacteristicConfigurationDescriptorValue As GattClientCharacteristicConfigurationDescriptorValue) As IAsyncOperation( Of GattCommunicationStatus )// You can use this method in JavaScript.
- clientCharacteristicConfigurationDescriptorValue
- GattClientCharacteristicConfigurationDescriptorValue GattClientCharacteristicConfigurationDescriptorValue GattClientCharacteristicConfigurationDescriptorValue GattClientCharacteristicConfigurationDescriptorValue
Specifies a new value for the ClientCharacteristicConfigurationDescriptor of this Characteristic object.
The object that manages the asynchronous operation, which, upon completion, returns the status with which the operation completed.
WriteClientCharacteristicConfigurationDescriptorWithResultAsync(GattClientCharacteristicConfigurationDescriptorValue) WriteClientCharacteristicConfigurationDescriptorWithResultAsync(GattClientCharacteristicConfigurationDescriptorValue) WriteClientCharacteristicConfigurationDescriptorWithResultAsync(GattClientCharacteristicConfigurationDescriptorValue) WriteClientCharacteristicConfigurationDescriptorWithResultAsync(GattClientCharacteristicConfigurationDescriptorValue)
Writes the ClientCharacteristicConfigurationDescriptor to the Bluetooth LE device, and if the value to be written represents an indication or a notification and a ValueChanged event handler is registered, enables receiving ValueChanged events from the device.
public : IAsyncOperation<GattWriteResult> WriteClientCharacteristicConfigurationDescriptorWithResultAsync(GattClientCharacteristicConfigurationDescriptorValue clientCharacteristicConfigurationDescriptorValue)public IAsyncOperation<GattWriteResult> WriteClientCharacteristicConfigurationDescriptorWithResultAsync(GattClientCharacteristicConfigurationDescriptorValue clientCharacteristicConfigurationDescriptorValue)Public Function WriteClientCharacteristicConfigurationDescriptorWithResultAsync(clientCharacteristicConfigurationDescriptorValue As GattClientCharacteristicConfigurationDescriptorValue) As IAsyncOperation( Of GattWriteResult )// You can use this method in JavaScript.
- clientCharacteristicConfigurationDescriptorValue
- GattClientCharacteristicConfigurationDescriptorValue GattClientCharacteristicConfigurationDescriptorValue GattClientCharacteristicConfigurationDescriptorValue GattClientCharacteristicConfigurationDescriptorValue
Specifies a new value for the ClientCharacteristicConfigurationDescriptor of this Characteristic object.
Returns an asynchronous operation that completes with a GattWriteResult object.
| Device family |
Windows 10 Creators Update (introduced v10.0.15063.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v4)
|
WriteValueAsync(IBuffer) WriteValueAsync(IBuffer) WriteValueAsync(IBuffer) WriteValueAsync(IBuffer)
Performs a Characteristic Value write to a Bluetooth LE device.
public : IAsyncOperation<GattCommunicationStatus> WriteValueAsync(IBuffer value)public IAsyncOperation<GattCommunicationStatus> WriteValueAsync(IBuffer value)Public Function WriteValueAsync(value As IBuffer) As IAsyncOperation( Of GattCommunicationStatus )// You can use this method in JavaScript.
A Windows.Storage.Streams.IBuffer object which contains the data to be written to the Bluetooth LE device.
The object that manages the asynchronous operation, which, upon completion, returns the status with which the operation completed.
- See Also
WriteValueAsync(IBuffer, GattWriteOption) WriteValueAsync(IBuffer, GattWriteOption) WriteValueAsync(IBuffer, GattWriteOption) WriteValueAsync(IBuffer, GattWriteOption)
Performs a Characteristic Value write to a Bluetooth LE device.
public : IAsyncOperation<GattCommunicationStatus> WriteValueAsync(IBuffer value, GattWriteOption writeOption)public IAsyncOperation<GattCommunicationStatus> WriteValueAsync(IBuffer value, GattWriteOption writeOption)Public Function WriteValueAsync(value As IBuffer, writeOption As GattWriteOption) As IAsyncOperation( Of GattCommunicationStatus )// You can use this method in JavaScript.
A Windows.Storage.Streams.IBuffer object which contains the data to be written to the Bluetooth LE device.
- writeOption
- GattWriteOption GattWriteOption GattWriteOption GattWriteOption
Specifies what type of GATT write should be performed.
The object that manages the asynchronous operation, which, upon completion, returns the status with which the operation completed.
- See Also
WriteValueWithResultAsync(IBuffer) WriteValueWithResultAsync(IBuffer) WriteValueWithResultAsync(IBuffer) WriteValueWithResultAsync(IBuffer)
Performs a Characteristic Value write to a Bluetooth LE device.
public : IAsyncOperation<GattWriteResult> WriteValueWithResultAsync(IBuffer value)public IAsyncOperation<GattWriteResult> WriteValueWithResultAsync(IBuffer value)Public Function WriteValueWithResultAsync(value As IBuffer) As IAsyncOperation( Of GattWriteResult )// You can use this method in JavaScript.
A Windows.Storage.Streams.IBuffer object which contains the data to be written to the Bluetooth LE device.
An asynchronous operation that completes with a GattWriteResult object.
| Device family |
Windows 10 Creators Update (introduced v10.0.15063.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v4)
|
WriteValueWithResultAsync(IBuffer, GattWriteOption) WriteValueWithResultAsync(IBuffer, GattWriteOption) WriteValueWithResultAsync(IBuffer, GattWriteOption) WriteValueWithResultAsync(IBuffer, GattWriteOption)
Performs a Characteristic Value write to a Bluetooth LE device.
public : IAsyncOperation<GattWriteResult> WriteValueWithResultAsync(IBuffer value, GattWriteOption writeOption)public IAsyncOperation<GattWriteResult> WriteValueWithResultAsync(IBuffer value, GattWriteOption writeOption)Public Function WriteValueWithResultAsync(value As IBuffer, writeOption As GattWriteOption) As IAsyncOperation( Of GattWriteResult )// You can use this method in JavaScript.
A Windows.Storage.Streams.IBuffer object which contains the data to be written to the Bluetooth LE device.
- writeOption
- GattWriteOption GattWriteOption GattWriteOption GattWriteOption
Specifies what type of GATT write should be performed.
An asynchronous operation that completes with a GattWriteResult object.
| Device family |
Windows 10 Creators Update (introduced v10.0.15063.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v4)
|
Events
ValueChanged ValueChanged ValueChanged ValueChanged
An App can register an event handler in order to receive events when notification or indications are received from a device, after setting the Client Characteristic Configuration Descriptor.
public : event TypedEventHandler ValueChanged<GattCharacteristic, GattValueChangedEventArgs>public event TypedEventHandler ValueChanged<GattCharacteristic, GattValueChangedEventArgs>Public Event ValueChanged<GattCharacteristic, GattValueChangedEventArgs>// You can use this event in JavaScript.
Remarks
The GattValueChangedEventArgs object represents the arguments received by a ValueChanged event handler used to process characteristic value change notification and indication events sent by a Bluetooth LE device.