Class BluetoothCharacteristicProperties
- Namespace
- CSharpToJavaScript.APIs.JS
- Assembly
- CSharpToJavaScript.dll
NOTE
ExperimentalBluetoothCharacteristicProperties interface of the Web Bluetooth API provides the operations that are valid on the given 'BluetoothRemoteGATTCharacteristic'.
[Value("BluetoothCharacteristicProperties")]
public class BluetoothCharacteristicProperties
- Inheritance
-
BluetoothCharacteristicProperties
- Inherited Members
Remarks
This interface is returned by calling Properties.
Constructors
BluetoothCharacteristicProperties()
public BluetoothCharacteristicProperties()
Properties
AuthenticatedSignedWrites
NOTE
ExperimentalauthenticatedSignedWrites read-onlyproperty of the BluetoothCharacteristicProperties interface returns a
boolean that is true if signed writing to the characteristicvalue is permitted.
[Value("authenticatedSignedWrites")]
public bool AuthenticatedSignedWrites { get; }
Property Value
- bool
A boolean value.
Remarks
Broadcast
NOTE
Experimentalbroadcast read-only property of theBluetoothCharacteristicProperties interface returns a
boolean that is true if the broadcast of the characteristicvalue is permitted using the Server Characteristic Configuration Descriptor.
[Value("broadcast")]
public bool Broadcast { get; }
Property Value
- bool
A boolean value.
Remarks
Indicate
NOTE
Experimentalindicate read-only property of theBluetoothCharacteristicProperties interface returns a
boolean that is true if indications of the characteristicvalue with acknowledgement is permitted.
[Value("indicate")]
public bool Indicate { get; }
Property Value
- bool
A boolean value.
Remarks
Notify
The notify read-only property of the
BluetoothCharacteristicProperties interface returns aboolean that is true if notifications of the characteristic
value without acknowledgement is permitted.
[Value("notify")]
public bool Notify { get; }
Property Value
- bool
A boolean value.
Remarks
Read
NOTE
Experimentalread read-only property of theBluetoothCharacteristicProperties interface returns a
boolean that is true if the reading of the characteristicvalue is permitted.
[Value("read")]
public bool Read { get; }
Property Value
- bool
A boolean value.
Remarks
ReliableWrite
NOTE
ExperimentalreliableWrite read-only property ofthe BluetoothCharacteristicProperties interface returns a
boolean that is true if reliable writes to the characteristicis permitted.
[Value("reliableWrite")]
public bool ReliableWrite { get; }
Property Value
- bool
A boolean value.
Remarks
WritableAuxiliaries
NOTE
ExperimentalwritableAuxiliaries read-onlyproperty of the BluetoothCharacteristicProperties interface returns a
boolean that is true if reliable writes to the characteristicdescriptor is permitted.
[Value("writableAuxiliaries")]
public bool WritableAuxiliaries { get; }
Property Value
- bool
A boolean value.
Remarks
Write
NOTE
Experimentalwrite read-only property of theBluetoothCharacteristicProperties interface returns a
boolean that is true if the writing to the characteristic withresponse is permitted.
[Value("write")]
public bool Write { get; }
Property Value
- bool
A boolean value.
Remarks
WriteWithoutResponse
NOTE
ExperimentalwriteWithoutResponse read-onlyproperty of the BluetoothCharacteristicProperties interface returns a
boolean that is true if the writing to the characteristicwithout response is permitted.
[Value("writeWithoutResponse")]
public bool WriteWithoutResponse { get; }
Property Value
- bool
A boolean value.