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

GetDeviceModelAsync() 공개 정적인 메소드

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

Usage Example

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