Поделиться через


Platform.GetDevice - метод

Обновлен: Ноябрь 2007

Получает объект класса Device с заданным идентификатором.

Пространство имен:  Microsoft.SmartDevice.Connectivity
Сборка:  Microsoft.SmartDevice.Connectivity (в Microsoft.SmartDevice.Connectivity.dll)

Синтаксис

'Декларация
Public Function GetDevice ( _
    deviceId As ObjectId _
) As Device
'Применение
Dim instance As Platform
Dim deviceId As ObjectId
Dim returnValue As Device

returnValue = instance.GetDevice(deviceId)
public Device GetDevice(
    ObjectId deviceId
)
public:
Device^ GetDevice(
    ObjectId^ deviceId
)
public function GetDevice(
    deviceId : ObjectId
) : Device

Параметры

Возвращаемое значение

Тип: Microsoft.SmartDevice.Connectivity.Device
Объект устройства, представляющий устройство.

Исключения

Исключение Условие
ArgumentNullException

Возникает, когда входной аргумент является нулевой строкой.

DeviceNotFoundException

Возникает, когда устройство с заданным идентификатором не найдено.

Примеры

' Get the default device in the platform, usually an emulator.
Dim device As Device = platform.GetDevice(platform.GetDefaultDeviceId())

' Output information about the device.
Console.WriteLine("Name:  " + device.Name + vbCr + vbLf + "Platform:  " & _
                  device.Platform.ToString() + vbCr + vbLf + "ID:  " + _
                  device.Id.ToString())

If device.IsEmulator() Then
    Console.WriteLine("Device is an Emulator")
End If

' Output device properties
Console.WriteLine(vbCr + vbLf + "Device Properties:")
Console.WriteLine("    OS_Version: " + device.GetProperty("OS_Version"))
// Get the default device in the platform, usually an emulator.
Device device = platform.GetDevice(platform.GetDefaultDeviceId());

// Output information about the device.
Console.WriteLine("Name:  " + device.Name + "\r\n" +
                "Platform:  " + device.Platform + "\r\n" +
                "ID:  " + device.Id);

if (device.IsEmulator())
{
    Console.WriteLine("Device is an Emulator");
}

// Output device properties
Console.WriteLine("\r\nDevice Properties:");
Console.WriteLine("    OS_Version: " + device.GetProperty("OS_Version"));

Разрешения

См. также

Ссылки

Platform Класс

Platform - члены

Microsoft.SmartDevice.Connectivity - пространство имен