// 32feet.NET - Personal Area Networking for .NET
//
// InTheHand.Net.Bluetooth.Factory.IBluetoothRadio
//
// Copyright (c) 2003-2010 In The Hand Ltd, All rights reserved.
// This source code is licensed under the In The Hand Community License - see License.txt
using System;
namespace InTheHand.Net.Bluetooth.Factory{
/// <exclude/>
public interface IBluetoothRadio
{
#pragma warning disable 1591
ClassOfDevice ClassOfDevice { get; }
IntPtr Handle { get; }
HardwareStatus HardwareStatus { get; }
int LmpSubversion { get; }
BluetoothAddress LocalAddress { get; }
Manufacturer Manufacturer { get; }
RadioMode Mode { get; set; }
string Name { get; set; }
Manufacturer SoftwareManufacturer { get; }
string Remote { get; }
}
}
|