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

GetDeviceManufacturerAsync() public static method

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

Usage Example

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