Domanda

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?

È stato utile?

Soluzione

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());
}
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top