Welcome to Comunidade Bloggers |create|it| Sign in | Join | Help
List User Profiles from MOSS 2007

using (SPSite site = new SPSite(siteUrl))
{
  ServerContext context = ServerContext.GetContext(site);
  UserProfileManager profileManager = new UserProfileManager(context);

  foreach (UserProfile userProfile in profileManager)
    Console.WriteLine(userProfile[PropertyConstants.UserName].Value);
}

Posted: Thursday, May 17, 2007 10:23 AM by ricardo.costa
Filed under:

Comments

No Comments

Anonymous comments are disabled