Example #1
0
        internal override Principal CreateExtendedPrincipal(PrincipalContext context, string name)
        {
            ExtendedUserPrincipal user = new ExtendedUserPrincipal(context);

            user.Name = name;
            return(user);
        }
Example #2
0
 internal override Principal FindExtendedPrincipal(PrincipalContext context, string name)
 {
     return(ExtendedUserPrincipal.FindByIdentity(context, name));
 }
Example #3
0
 internal override Principal CreateExtendedPrincipal(PrincipalContext context, string name)
 {
     ExtendedUserPrincipal user = new ExtendedUserPrincipal(context);
     user.Name = name;
     return user;
 }