ContactQueryResult.GetContactsAsync 方法

定义

重载

GetContactsAsync()

从联系人存储中检索联系人。

GetContactsAsync(UInt32, UInt32)

根据指定的起始索引和要返回的项目数,从联系人存储中检索联系人。

GetContactsAsync()

从联系人存储中检索联系人。

public:
 virtual IAsyncOperation<IVectorView<StoredContact ^> ^> ^ GetContactsAsync() = GetContactsAsync;
/// [Windows.Foundation.Metadata.Overload("GetContactsAsync")]
IAsyncOperation<IVectorView<StoredContact>> GetContactsAsync();
[Windows.Foundation.Metadata.Overload("GetContactsAsync")]
public IAsyncOperation<IReadOnlyList<StoredContact>> GetContactsAsync();
function getContactsAsync()
Public Function GetContactsAsync () As IAsyncOperation(Of IReadOnlyList(Of StoredContact))

返回

此方法完成后,它将返回包含 StoredContact 对象的 IVectorView。 如果使用 异步编程,则结果类型是 StoredContact 项的只读列表/矢量。 (可以使用适用于 C++ 的 IVectorView<StoredContact> 的 API、适用于 .NET 的 IReadOnlyList 的 API )

属性

Windows 要求

应用功能
ID_CAP_CONTACTS [Windows Phone]

另请参阅

适用于

GetContactsAsync(UInt32, UInt32)

根据指定的起始索引和要返回的项目数,从联系人存储中检索联系人。

public:
 virtual IAsyncOperation<IVectorView<StoredContact ^> ^> ^ GetContactsAsync(unsigned int startIndex, unsigned int maxNumberOfItems) = GetContactsAsync;
/// [Windows.Foundation.Metadata.Overload("GetContactsAsyncInRange")]
IAsyncOperation<IVectorView<StoredContact>> GetContactsAsync(uint32_t const& startIndex, uint32_t const& maxNumberOfItems);
[Windows.Foundation.Metadata.Overload("GetContactsAsyncInRange")]
public IAsyncOperation<IReadOnlyList<StoredContact>> GetContactsAsync(uint startIndex, uint maxNumberOfItems);
function getContactsAsync(startIndex, maxNumberOfItems)
Public Function GetContactsAsync (startIndex As UInteger, maxNumberOfItems As UInteger) As IAsyncOperation(Of IReadOnlyList(Of StoredContact))

参数

startIndex
UInt32

unsigned int

uint32_t

要检索的第一个联系人的索引。

maxNumberOfItems
UInt32

unsigned int

uint32_t

要检索的联系人数。

返回

此方法完成后,它将返回包含 StoredContact 对象的 IVectorView。 如果使用 异步编程,则结果类型是 StoredContact 项的只读列表/矢量。 (可以使用适用于 C++ 的 IVectorView<StoredContact> 的 API、适用于 .NET 的 IReadOnlyList 的 API )

属性

Windows 要求

应用功能
ID_CAP_CONTACTS [Windows Phone]

另请参阅

适用于