tixovoxi
tixovoxi

Reputation: 181

How to get contact list from uwp c#?

How can I get the full contact list from user's phone in UWP?

I have found articles on msdn, but thes use only contact picker that doesn't gives me a full list of the contacts. I just would like to get their names and profile images, noting else.

Upvotes: 2

Views: 854

Answers (1)

filhit
filhit

Reputation: 2154

ContactStore.FindContactsAsync

var contactStore = await ContactManager.RequestStoreAsync();
var contacts = await contactStore.FindContactsAsync();

Upvotes: 2

Related Questions