Hello Freddy,
Please use Outlook Object model to access Outlook contacts. Code like this,
Outlook.Folder conFolder = Globals.ThisAddIn.Application.Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderContacts) as Outlook.Folder;
Outlook.Items items = conFolder.Items;
foreach (Outlook.ContactItem cItem in conFolder.Items)
{
......
}
Here we can check thisproperties page to find the property you want to access.
About security and Redemption, here are two articles you could refer to:
http://www.dimastr.com/redemption/.
http://www.dimastr.com/redemption/security.htm#regfreecom.
If you have any further question, please feel free to let us know.
Best regards,
Bessie
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.