AdjustSdk.Uap.SystemInfoEstimate.GetDeviceModelAsync C# (CSharp) Method

GetDeviceModelAsync() public static method

public static GetDeviceModelAsync ( ) : Task
return Task
        public static Task<string> GetDeviceModelAsync()
        {
            return GetRootDeviceInfoAsync(ModelNameKey);
        }

Usage Example

Beispiel #1
0
 public static string GetDeviceName()
 {
     return(SystemInfoEstimate.GetDeviceModelAsync().Result);
 }