AdjustSdk.Uap.SystemInfoEstimate.GetDeviceModelAsync C# (CSharp) Метод

GetDeviceModelAsync() публичный статический Метод

public static GetDeviceModelAsync ( ) : Task
Результат Task
        public static Task<string> GetDeviceModelAsync()
        {
            return GetRootDeviceInfoAsync(ModelNameKey);
        }

Usage Example

Пример #1
0
 public static string GetDeviceName()
 {
     return(SystemInfoEstimate.GetDeviceModelAsync().Result);
 }