SystemInformation IsMobileDevice Property Delta Engine Documentation

Namespace: DeltaEngine.Platforms
Assembly: DeltaEngine.Platforms (in DeltaEngine.Platforms.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public abstract bool IsMobileDevice { get; }

Property Value

Type: Boolean
Remarks

Tests: DeltaEngine.Platforms.Tests.SystemInformationTests
Examples

1 unit tests call DeltaEngine.Platforms.SystemInformation.IsMobileDevice
[Test]
public void VerifyDeviceType()
{
    Assert.IsFalse(info.IsMobileDevice);
    Assert.IsFalse(info.IsTablet);
    Assert.IsFalse(info.IsConsole);
}
See Also