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


Device.IsEmulator - метод

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

Проверяет, является ли устройство эмулятором или физическим устройством.

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

Синтаксис

'Декларация
Public Function IsEmulator As Boolean
'Применение
Dim instance As Device
Dim returnValue As Boolean

returnValue = instance.IsEmulator()
public bool IsEmulator()
public:
bool IsEmulator()
public function IsEmulator() : boolean

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

Тип: System.Boolean
Значение True, если объект устройства относится к эмулятору; в противном случае — false.

Заметки

Если в хранилище данных не указано, что устройство является эмулятором, метод возвращает значение false и предполагает, что устройство является физическим.

Примеры

' 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"));

Разрешения

См. также

Ссылки

Device Класс

Device - члены

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