BluetoothAdapter.GetRemoteDevice Method    
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| GetRemoteDevice(String) | Get a  | 
| GetRemoteDevice(Byte[]) | Get a  | 
GetRemoteDevice(String)
Get a BluetoothDevice object for the given Bluetooth hardware
address.
[Android.Runtime.Register("getRemoteDevice", "(Ljava/lang/String;)Landroid/bluetooth/BluetoothDevice;", "")]
public Android.Bluetooth.BluetoothDevice? GetRemoteDevice(string? address);[<Android.Runtime.Register("getRemoteDevice", "(Ljava/lang/String;)Landroid/bluetooth/BluetoothDevice;", "")>]
member this.GetRemoteDevice : string -> Android.Bluetooth.BluetoothDeviceParameters
- address
- String
valid Bluetooth MAC address
Returns
- Attributes
Exceptions
if address is invalid
Remarks
Java documentation for android.bluetooth.BluetoothAdapter.getRemoteDevice(java.lang.String).
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
GetRemoteDevice(Byte[])
Get a BluetoothDevice object for the given Bluetooth hardware
address.
[Android.Runtime.Register("getRemoteDevice", "([B)Landroid/bluetooth/BluetoothDevice;", "")]
public Android.Bluetooth.BluetoothDevice? GetRemoteDevice(byte[]? address);[<Android.Runtime.Register("getRemoteDevice", "([B)Landroid/bluetooth/BluetoothDevice;", "")>]
member this.GetRemoteDevice : byte[] -> Android.Bluetooth.BluetoothDeviceParameters
- address
- Byte[]
Bluetooth MAC address (6 bytes)
Returns
- Attributes
Exceptions
if address is invalid
Remarks
Java documentation for android.bluetooth.BluetoothAdapter.getRemoteDevice(byte[]).
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.