How do i get Contact Picture?

  • Thread starter Thread starter rnv
  • Start date Start date
R

rnv

hi,
I am trying to read all contact item details specified in outlook contact
list using c#. i can read all contact properties but i have no idea how to
get the picture if the picture is specified for the contact. how is it
possible? will really appreciate.
regards,
rnv
 
There is no exposed method for getting a picture from a contact. Once you
determine that the contact has a picture (ContactItem.HasPicture) you would
need to look at the Attachments collection of the item, that's where the
picture is stored.
 
Thanks a lot!!

Ken Slovak - said:
There is no exposed method for getting a picture from a contact. Once you
determine that the contact has a picture (ContactItem.HasPicture) you
would need to look at the Attachments collection of the item, that's where
the picture is stored.
 
Back
Top