Question

i have UserProfileChangeCollection collection with all the changes for the uses made in user profile. Can i get the unique user [i.e. Account name property of user profile] from the collection?

Était-ce utile?

La solution

Take a look at MSDN:

This code should work (I didn't tested it!):

UserProfileChangeCollection changes = ...... ; 
foreach (UserProfileChange change in changes)
{
    Console.WriteLine(change.AccountName.ToString());
}
Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top