扩展UserPrincipal; FindByIdentity()失败

时间:2010-08-18 18:52:37

标签: c# active-directory account-management directoryservices userprincipal

扩展UserPrincipal以利用其内置属性...当我们重载FindByIdentity()方法时遇到问题。

来自微软的http://msdn.microsoft.com/en-us/library/bb384372%28VS.90%29.aspx示例(为简洁起见排除部分):

[DirectoryRdnPrefix("CN")]
[DirectoryObjectClass("inetOrgPerson")]
public class InetOrgPerson : UserPrincipal {

   // Implement the overloaded search method FindByIdentity
   public static new InetOrgPerson FindByIdentity(PrincipalContext context, 
                                                  string identityValue) {
       return (InetOrgPerson)FindByIdentityWithType(context,
                                                    typeof(InetOrgPerson),
                                                    identityValue);
   }

   // Implement the overloaded search method FindByIdentity
   public static new InetOrgPerson FindByIdentity(PrincipalContext context, 
                                                  IdentityType identityType, 
                                                  string identityValue) {
       return (InetOrgPerson)FindByIdentityWithType(context, 
                                                    typeof(InetOrgPerson), 
                                                    identityType,
                                                    identityValue);
   } 
}

如果我从MSDN示例中获取确切的代码并将其粘贴到我的应用程序中,它就不起作用。对InetOrgPerson.FindByIdentity()的调用返回null,如下:

if (null == InetOrgPerson.FindByIdentity(principalContext, UserName)) {
     throw new Exception("bah");
}

事实上,从InetOrgPerson.FindByIdentity()开始,对FindByIdentityWithType()的调用将返回null,如下所示:

if (null == FindByIdentityWithType(context, typeof(InetOrgPerson), identityType, identityValue) {
    throw new Exception("bah");
}

然而,电话:

FindByIdentityWithType(context, typeof(UserPrincipal), identityType, identityValue)

给了我想要的用户对象。除非我不能使用它,因为它不能转换为我需要返回的InetOrgPerson对象。

是什么给出的?我希望微软自己的示例代码可以工作,但事实并非如此,因此我尝试根据示例编写的代码自然也无法正常工作。有没有人做过这项工作?

提前致谢! 詹姆斯

1 个答案:

答案 0 :(得分:13)

确保您搜索的用户实际属于班级inetOrgPerson