0
我目前正試圖在通用Windows應用程序中將當前用戶Computer Domain
拉出。獲取計算機域(通用Windows應用程序)
我不喜歡這樣。NET中:
public static string GetDomain()
{
return Domain.GetComputerDomain().ToString();
}
有同等方式通用的Windows應用程序做到這一點?
我目前正試圖在通用Windows應用程序中將當前用戶Computer Domain
拉出。獲取計算機域(通用Windows應用程序)
我不喜歡這樣。NET中:
public static string GetDomain()
{
return Domain.GetComputerDomain().ToString();
}
有同等方式通用的Windows應用程序做到這一點?
IReadOnlyList<User> users = await User.FindAllAsync();
foreach (User user in users)
{
string DomainName = (string)await user.GetPropertyAsync(KnownUserProperties.DomainName);
}