AdjustSdk.Uap.SystemInfoEstimate.GetDeviceManufacturerAsync C# (CSharp) 메소드

GetDeviceManufacturerAsync() 공개 정적인 메소드

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

Usage Example

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