ContactStore.CreateContactQuery Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CreateContactQuery() |
Creates a contact query with the default options. |
CreateContactQuery(ContactQueryOptions) |
Creates a contact query with the custom options. |
CreateContactQuery()
Creates a contact query with the default options.
public:
virtual ContactQueryResult ^ CreateContactQuery() = CreateContactQuery;
/// [Windows.Foundation.Metadata.Overload("CreateContactQueryDefault")]
ContactQueryResult CreateContactQuery();
[Windows.Foundation.Metadata.Overload("CreateContactQueryDefault")]
public ContactQueryResult CreateContactQuery();
function createContactQuery()
Public Function CreateContactQuery () As ContactQueryResult
Returns
A ContactQueryResult containing the contacts from the store.
- Attributes
Windows requirements
App capabilities |
ID_CAP_CONTACTS [Windows Phone]
|
See also
Applies to
CreateContactQuery(ContactQueryOptions)
Creates a contact query with the custom options.
public:
virtual ContactQueryResult ^ CreateContactQuery(ContactQueryOptions ^ options) = CreateContactQuery;
/// [Windows.Foundation.Metadata.Overload("CreateContactQueryWithOptions")]
ContactQueryResult CreateContactQuery(ContactQueryOptions const& options);
[Windows.Foundation.Metadata.Overload("CreateContactQueryWithOptions")]
public ContactQueryResult CreateContactQuery(ContactQueryOptions options);
function createContactQuery(options)
Public Function CreateContactQuery (options As ContactQueryOptions) As ContactQueryResult
Parameters
- options
- ContactQueryOptions
The query options.
Returns
A ContactQueryResult containing the contacts from the store.
- Attributes
Windows requirements
App capabilities |
ID_CAP_CONTACTS [Windows Phone]
|