ContactPicture Microsoft.Office.Interop.Outlook



I am trying to use the office interop to retrieve a contact photo for a given contact if available

I am able to iterate thru my contacts:

Outlook.ContactItem contact =
(Outlook.ContactItem)contacts.Items[i];

and i am able to check if a contact has a contact photo:

if(contact.HasPicture)

but i have no idea how i can get access to the ContactPhoto and i been googling with no luck????




.


Loading