uno.xamarin.essentials/Xamarin.Essentials/DeviceInfo/DeviceInfo.netstandard.cs

20 строки
687 B
C#

namespace Xamarin.Essentials
{
public static partial class DeviceInfo
{
static string GetModel() => throw ExceptionUtils.NotSupportedOrImplementedException;
static string GetManufacturer() => throw ExceptionUtils.NotSupportedOrImplementedException;
static string GetDeviceName() => throw ExceptionUtils.NotSupportedOrImplementedException;
static string GetVersionString() => throw ExceptionUtils.NotSupportedOrImplementedException;
static DevicePlatform GetPlatform() => DevicePlatform.Unknown;
static DeviceIdiom GetIdiom() => DeviceIdiom.Unknown;
static DeviceType GetDeviceType() => DeviceType.Unknown;
}
}