Table of Contents

Class BluetoothUUID

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The BluetoothUUID interface of the Web Bluetooth API provides a way to look up Universally Unique Identifier (UUID) values by name in the
registry maintained by the Bluetooth SIG.

[Value("BluetoothUUID")]
public class BluetoothUUID
Inheritance
BluetoothUUID
Inherited Members

Remarks

Constructors

BluetoothUUID()

public BluetoothUUID()

Methods

CanonicalUUID(ulong)

NOTE
Experimental
The canonicalUUID() static method of the BluetoothUUID interface returns the 128-bit UUID when passed a 16- or 32-bit UUID alias.
[Value("canonicalUUID")]
public static string CanonicalUUID(ulong alias)

Parameters

alias ulong

Returns

string

A 128-bit UUID.

Remarks

GetCharacteristic(Union174)

NOTE
Experimental
The getCharacteristic() static method of the BluetoothUUID interface returns a UUID representing a registered characteristic when passed a name or the 16- or 32-bit UUID alias.
[Value("getCharacteristic")]
public static string GetCharacteristic(Union174 name)

Parameters

name Union174

Returns

string

A 128-bit UUID.

Remarks

GetDescriptor(Union175)

NOTE
Experimental
The getDescriptor() static method of the BluetoothUUID interface returns a UUID representing a registered descriptor when passed a name or the 16- or 32-bit UUID alias.
[Value("getDescriptor")]
public static string GetDescriptor(Union175 name)

Parameters

name Union175

Returns

string

A 128-bit UUID.

Remarks

GetService(Union173)

NOTE
Experimental
The getService() static method of the BluetoothUUID interface returns a UUID representing a registered service when passed a name or the 16- or 32-bit UUID alias.
[Value("getService")]
public static string GetService(Union173 name)

Parameters

name Union173

Returns

string

A 128-bit UUID.

Remarks