有没有办法通过AD进行身份验证而不在Universal Windows Application
中使用Azure AD?在Web应用程序中,我使用此方法
using System.DirectoryServices.AccountManagement
using (PrincipalContext pc = new PrincipalContext(ContextType.Domain, "my.domain"))
{
bool isValid = pc.ValidateCredentials(username, password);
}
这是我在Web应用程序中通过AD(不是Azure)对用户进行身份验证的方式。是否有类似的方法可以在通用Windows应用程序中完成?
我找到了一个名为:
的软件包using Microsoft.IdentityModel.Clients.ActiveDirectory;
但看起来需要Azure。
有什么建议吗?