A subclass of FeedQuery, to create an Contacts query URI. Provides public properties that describe the different aspects of the URI, as well as a composite URI. The ContactsQuery supports the following GData parameters: The Contacts Data API supports the following standard Google Data API query parameters: Name Description alt The type of feed to return, such as atom (the default), rss, or json. max-results The maximum number of entries to return. If you want to receive all of the contacts, rather than only the default maximum, you can specify a very large number for max-results. start-index The 1-based index of the first result to be retrieved (for paging). updated-min The lower bound on entry update dates. For more information about the standard parameters, see the Google Data APIs protocol reference document. In addition to the standard query parameters, the Contacts Data API supports the following parameters: Name Description orderby Sorting criterion. The only supported value is lastmodified. showdeleted Include deleted contacts in the returned contacts feed. Deleted contacts are shown as entries that contain nothing but an atom:id element and a gd:deleted element. (Google retains placeholders for deleted contacts for 30 days after deletion; during that time, you can request the placeholders using the showdeleted query parameter.) Valid values are true or false. sortorder Sorting order direction. Can be either ascending or descending. group Constrains the results to only the contacts belonging to the group specified. Value of this parameter specifies group ID (see also: gContact:groupMembershipInfo).

Namespace:  Google.GData.Contacts
Assembly:  Google.GData.Contacts (in Google.GData.Contacts.dll)
Version: 1.4.0.2

Syntax

C#
public class GroupsQuery : FeedQuery
Visual Basic (Declaration)
Public Class GroupsQuery _

	Inherits FeedQuery
Visual C++
public ref class GroupsQuery : public FeedQuery

Inheritance Hierarchy

System..::.Object
  Google.GData.Client..::.FeedQuery
    Google.GData.Contacts..::.GroupsQuery
      Google.GData.Contacts..::.ContactsQuery

See Also