سؤال

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?

هل كانت مفيدة؟

المحلول

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());
}
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى sharepoint.stackexchange
scroll top