Расширение UserPrincipal
для использования его встроенных свойств ... возникает проблема при перегрузке метода FindByIdentity()
.
Из примера Microsoft на 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()
возвращает ноль, как таковой:
if (null == InetOrgPerson.FindByIdentity(principalContext, UserName)) {
throw new Exception("bah");
}
На самом деле, из InetOrgPerson.FindByIdentity()
, вызов FindByIdentityWithType()
возвращает ноль, как таковой:
if (null == FindByIdentityWithType(context, typeof(InetOrgPerson), identityType, identityValue) {
throw new Exception("bah");
}
Однако, вызов:
FindByIdentityWithType(context, typeof(UserPrincipal), identityType, identityValue)
дает мне объект пользователя, который я хочу.За исключением того, что я не могу использовать это, потому что он не может быть приведен к объекту InetOrgPerson
, который мне нужно вернуть.
Что дает?Я ожидаю, что собственный пример кода Microsoft будет работать, но это не так, поэтому естественно, что код, который я пытаюсь написать на основе примера, тоже не работает.Кто-нибудь сделал эту работу?
Заранее спасибо!Джеймс