Condividi tramite


ContactQueryResult.GetContactsAsync Metodo

Definizione

Overload

GetContactsAsync()

Recupera i contatti dall'archivio contatti.

GetContactsAsync(UInt32, UInt32)

Recupera i contatti dall'archivio contatti in base all'indice iniziale specificato e al numero di elementi da restituire.

GetContactsAsync()

Recupera i contatti dall'archivio contatti.

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))

Restituisce

Al termine di questo metodo, restituisce un oggetto IVectorView contenente oggetti StoredContact . Se si usa la programmazione asincrona, il tipo di risultato è un elenco/vettore di sola lettura di elementi StoredContact . È possibile usare le API di IVectorView<StoredContact> per C++, API di IReadOnlyList per .NET.

Attributi

Requisiti Windows

Funzionalità dell'app
ID_CAP_CONTACTS [Windows Phone]

Vedi anche

Si applica a

GetContactsAsync(UInt32, UInt32)

Recupera i contatti dall'archivio contatti in base all'indice iniziale specificato e al numero di elementi da restituire.

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))

Parametri

startIndex
UInt32

unsigned int

uint32_t

Indice del primo contatto da recuperare.

maxNumberOfItems
UInt32

unsigned int

uint32_t

Numero di contatti da recuperare.

Restituisce

Al termine di questo metodo, restituisce un oggetto IVectorView contenente oggetti StoredContact . Se si usa la programmazione asincrona, il tipo di risultato è un elenco/vettore di sola lettura di elementi StoredContact . È possibile usare le API di IVectorView<StoredContact> per C++, API di IReadOnlyList per .NET.

Attributi

Requisiti Windows

Funzionalità dell'app
ID_CAP_CONTACTS [Windows Phone]

Vedi anche

Si applica a