I have some plain contacts in my phone and I have also configured facebook,google and hotmail in my phone. In my native people hub I can see my phone contacts as well my facebook contacts and others too. I want to get information of all contacts that have phone number. How I can get that from WP7 contacts api.
var Contacts = new Microsoft.Phone.UserData.Contacts();
// hook up an event handler to retrieve the contacts after we've searched for them on the WP7
Contacts.SearchCompleted += ContactsSearchCompleted;
//Start the search asynchronously.
Contacts.SearchAsync(String.Empty, FilterKind.None, null);