ContentIndexerQuery.GetPropertiesAsync Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
GetPropertiesAsync() |
Recupera una raccolta di set di proprietà per un'app, in cui i set di proprietà sono coppie chiave-valore. |
GetPropertiesAsync(UInt32, UInt32) |
Esegue la query sulle proprietà del contenuto indicizzato dell'app e restituisce il numero specificato di proprietà dall'indice iniziale specificato nella raccolta dei risultati. |
GetPropertiesAsync()
Recupera una raccolta di set di proprietà per un'app, in cui i set di proprietà sono coppie chiave-valore.
public:
virtual IAsyncOperation<IVectorView<IMapView<Platform::String ^, Platform::Object ^> ^> ^> ^ GetPropertiesAsync() = GetPropertiesAsync;
/// [Windows.Foundation.Metadata.Overload("GetPropertiesAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<IMapView<winrt::hstring, IInspectable const&>>> GetPropertiesAsync();
[Windows.Foundation.Metadata.Overload("GetPropertiesAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<IReadOnlyDictionary<string,object>>> GetPropertiesAsync();
function getPropertiesAsync()
Public Function GetPropertiesAsync () As IAsyncOperation(Of IReadOnlyList(Of IReadOnlyDictionary(Of String, Object)))
Restituisce
IAsyncOperation<IReadOnlyList<IReadOnlyDictionary<String,Object>>>
IAsyncOperation<IVectorView<IMapView<Platform::String,Platform::Object>>>
IAsyncOperation<IVectorView<IMapView<winrt::hstring,IInspectable>>>
Al termine di questo metodo, restituisce i risultati della query come raccolta di istanze PropertyValue .
- Attributi
Vedi anche
Si applica a
GetPropertiesAsync(UInt32, UInt32)
Esegue la query sulle proprietà del contenuto indicizzato dell'app e restituisce il numero specificato di proprietà dall'indice iniziale specificato nella raccolta dei risultati.
public:
virtual IAsyncOperation<IVectorView<IMapView<Platform::String ^, Platform::Object ^> ^> ^> ^ GetPropertiesAsync(unsigned int startIndex, unsigned int maxItems) = GetPropertiesAsync;
/// [Windows.Foundation.Metadata.Overload("GetPropertiesRangeAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<IMapView<winrt::hstring, IInspectable const&>>> GetPropertiesAsync(uint32_t const& startIndex, uint32_t const& maxItems);
[Windows.Foundation.Metadata.Overload("GetPropertiesRangeAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<IReadOnlyDictionary<string,object>>> GetPropertiesAsync(uint startIndex, uint maxItems);
function getPropertiesAsync(startIndex, maxItems)
Public Function GetPropertiesAsync (startIndex As UInteger, maxItems As UInteger) As IAsyncOperation(Of IReadOnlyList(Of IReadOnlyDictionary(Of String, Object)))
Parametri
- startIndex
-
UInt32
unsigned int
uint32_t
Indice del primo elemento da ottenere dalla raccolta dei risultati.
- maxItems
-
UInt32
unsigned int
uint32_t
Numero massimo di elementi da ottenere.
Restituisce
IAsyncOperation<IReadOnlyList<IReadOnlyDictionary<String,Object>>>
IAsyncOperation<IVectorView<IMapView<Platform::String,Platform::Object>>>
IAsyncOperation<IVectorView<IMapView<winrt::hstring,IInspectable>>>
Al termine di questo metodo, restituisce i risultati della query come raccolta di istanze PropertyValue .
- Attributi
Commenti
La specifica di startIndex e maxItems è utile per la virtualizzazione o l'accesso impaginato dei risultati della ricerca.