Google Integrator V2 - Online Help
Google Integrator V2
Questions / Feedback?

ContactList Event

This event fires once for each contact returned when calling QueryContacts.

Syntax

[VB.NET]
Public Event OnContactList As OnContactListHandler
[C#]
public event OnContactListHandler OnContactList;

public delegate void OnContactListHandler(object sender, GcontactsContactListEventArgs e);

class GcontactsContactListEventArgs : EventArgs {
  string Id {get;}
  string ETag {get;}
  string FullName {get;}
  string Gender {get;}
  string WorkAddress {get;}
  string WorkEmailAddress {get;}
  string WorkPhoneNumber {get;}
}

Remarks

When calling QueryContacts this event will fire once for each contact returned.

Id is the Id of the contact.

ETag is the ETag of the contact.

FullName is the full name of the contact (if any).

Gender may be "male", "female" or empty string.

WorkAddress is the contact's work address.

WorkEmailAddress is the contact's work email address.

WorkPhoneNumber is the work phone number of the contact.

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 2.0.6240.0