Table of Contents

Class BluetoothCharacteristicProperties

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll
NOTE
Experimental
The BluetoothCharacteristicProperties 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.

See also on MDN

Constructors

BluetoothCharacteristicProperties()

public BluetoothCharacteristicProperties()

Properties

AuthenticatedSignedWrites

NOTE
Experimental
The authenticatedSignedWrites read-only
property of the BluetoothCharacteristicProperties interface returns a
boolean that is true if signed writing to the characteristic
value is permitted.
[Value("authenticatedSignedWrites")]
public bool AuthenticatedSignedWrites { get; }

Property Value

bool

A boolean value.

Remarks

Broadcast

NOTE
Experimental
The broadcast read-only property of the
BluetoothCharacteristicProperties interface returns a
boolean that is true if the broadcast of the characteristic
value is permitted using the Server Characteristic Configuration Descriptor.
[Value("broadcast")]
public bool Broadcast { get; }

Property Value

bool

A boolean value.

Remarks

Indicate

NOTE
Experimental
The indicate read-only property of the
BluetoothCharacteristicProperties interface returns a
boolean that is true if indications of the characteristic
value 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 a
boolean 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
Experimental
The read read-only property of the
BluetoothCharacteristicProperties interface returns a
boolean that is true if the reading of the characteristic
value is permitted.
[Value("read")]
public bool Read { get; }

Property Value

bool

A boolean value.

Remarks

ReliableWrite

NOTE
Experimental
The reliableWrite read-only property of
the BluetoothCharacteristicProperties interface returns a
boolean that is true if reliable writes to the characteristic
is permitted.
[Value("reliableWrite")]
public bool ReliableWrite { get; }

Property Value

bool

A boolean value.

Remarks

WritableAuxiliaries

NOTE
Experimental
The writableAuxiliaries read-only
property of the BluetoothCharacteristicProperties interface returns a
boolean that is true if reliable writes to the characteristic
descriptor is permitted.
[Value("writableAuxiliaries")]
public bool WritableAuxiliaries { get; }

Property Value

bool

A boolean value.

Remarks

Write

NOTE
Experimental
The write read-only property of the
BluetoothCharacteristicProperties interface returns a
boolean that is true if the writing to the characteristic with
response is permitted.
[Value("write")]
public bool Write { get; }

Property Value

bool

A boolean value.

Remarks

WriteWithoutResponse

NOTE
Experimental
The writeWithoutResponse read-only
property of the BluetoothCharacteristicProperties interface returns a
boolean that is true if the writing to the characteristic
without response is permitted.
[Value("writeWithoutResponse")]
public bool WriteWithoutResponse { get; }

Property Value

bool

A boolean value.

Remarks