ContentIndexerQuery.GetPropertiesAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
GetPropertiesAsync() |
Récupère une collection de jeux de propriétés pour une application, où les jeux de propriétés sont des paires clé-valeur. |
GetPropertiesAsync(UInt32, UInt32) |
Exécute la requête sur les propriétés de contenu indexées de l’application et retourne le nombre spécifié de propriétés de l’index de début spécifié dans la collection de résultats. |
GetPropertiesAsync()
Récupère une collection de jeux de propriétés pour une application, où les jeux de propriétés sont des paires clé-valeur.
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)))
Retours
IAsyncOperation<IReadOnlyList<IReadOnlyDictionary<String,Object>>>
IAsyncOperation<IVectorView<IMapView<Platform::String,Platform::Object>>>
IAsyncOperation<IVectorView<IMapView<winrt::hstring,IInspectable>>>
Une fois cette méthode terminée, elle retourne les résultats de la requête sous la forme d’une collection d’instances PropertyValue .
- Attributs
Voir aussi
S’applique à
GetPropertiesAsync(UInt32, UInt32)
Exécute la requête sur les propriétés de contenu indexées de l’application et retourne le nombre spécifié de propriétés de l’index de début spécifié dans la collection de résultats.
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)))
Paramètres
- startIndex
-
UInt32
unsigned int
uint32_t
Index du premier élément à obtenir à partir de la collection de résultats.
- maxItems
-
UInt32
unsigned int
uint32_t
Nombre maximal d’éléments à obtenir.
Retours
IAsyncOperation<IReadOnlyList<IReadOnlyDictionary<String,Object>>>
IAsyncOperation<IVectorView<IMapView<Platform::String,Platform::Object>>>
IAsyncOperation<IVectorView<IMapView<winrt::hstring,IInspectable>>>
Une fois cette méthode terminée, elle retourne les résultats de la requête sous la forme d’une collection d’instances PropertyValue .
- Attributs
Remarques
La spécification de startIndex et maxItems est utile pour la virtualisation ou l’accès paginé aux résultats de la recherche.