AdjustSdk.Uap.SystemInfoEstimate.GetDeviceModelAsync C# (CSharp) Méthode

GetDeviceModelAsync() public static méthode

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

Usage Example

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