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

GetDeviceManufacturerAsync() public static méthode

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

Usage Example

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