Programatically adding "New Custom Field" To Google Contacts using Google contact API

Posted by Pari on Stack Overflow See other posts from Stack Overflow or by Pari
Published on 2010-03-25T11:47:13Z Indexed on 2010/03/29 7:43 UTC
Read the original article Hit count: 381

Filed under:
|
|
|
|

Hi,

I want to programatically create new "Custom Field into Google Contact using Google Contact API (c#).

I used:

ExtendedProperty obj_ExtendedProperty = new ExtendedProperty(); 
 obj_ExtendedProperty.Name             = "Department";
 obj_ExtendedProperty.Value            = "Sales";
 ContactEntry.ExtendedProperties.Add(obj_ExtendedProperty);

Thanx

© Stack Overflow or respective owner

Related posts about c#

Related posts about google