I am using C# as programming language. I am not able to get creation date 
of a contact. I am able to get lastupdated of a contact. Here is my code 
snippet to get last updated date of contact :-
 
 ContactsQuery query = new ContactsQuery (ContactsQuery .CreateContactUrl(
[email protected]));
query.StartDate=DateTime.Now.AddDays(-1)
Feed<Contact> feed = ContactsRequestObject.Get<Contact>(query);
forach(Contact contact in feed.Enteries)
{
Console.Writeline("Updated On : " + contact.Updated.ToString());
}
 
Can any one please let me know the property which represents creation date 
of the contact.

-- 
You received this message because you are subscribed to the Google
Groups "Google Contacts, Shared Contacts and User Profiles APIs" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://code.google.com/apis/contacts/community/forum.html

Reply via email to