monotooth : monotooth.Model.Device Namespace

IDevice Interface

The superinterface for all devices. The sole purpose for this interface is to offer as much information as possible for the means of using devices.

public interface IDevice


Remarks

To be added.

Members

Properties

Address
monotooth.Model.BluetoothAddress . The devices address.
FriendlyName
string . The friendly name of this device (the human readable form).

Methods

AddressAsString () : string
Returns the 48-bit bluetooth address of this device as a string .
StringAsAddress (string) : monotooth.Model.BluetoothAddress
Converts a string presentation of a bluetooth address to a BluetoothAddress.

Member Details

Address Property

public monotooth.Model.BluetoothAddress Address { set; get; }

The devices address.

Value

A 48-bit bluetooth address.

Remarks

To be added.

AddressAsString Method

public string AddressAsString ()

Returns the 48-bit bluetooth address of this device as a string .

Returns

String presentation of this devices bluetooth address.

Remarks

To be added.

FriendlyName Property

public string FriendlyName { set; get; }

The friendly name of this device (the human readable form).

Value

A string.

Remarks

To be added.

StringAsAddress Method

public monotooth.Model.BluetoothAddress StringAsAddress (string addr)

Converts a string presentation of a bluetooth address to a BluetoothAddress.

Parameters

addr
A bluetooth address as string.

Returns

A bluetooth address wrapped to a class.

Remarks

To be added.