StoreContext.GetStoreProductsAsync 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
GetStoreProductsAsync(IIterable<String>, IIterable<String>) |
Ottiene le informazioni sulla presentazione di Microsoft Store per i prodotti specificati associati all'app corrente. |
GetStoreProductsAsync(IIterable<String>, IIterable<String>, StoreProductOptions) |
Ottiene le informazioni sulla presentazione di Microsoft Store per i prodotti specificati associati all'app corrente, con l'opzione per usare un filtro per la query. |
GetStoreProductsAsync(IIterable<String>, IIterable<String>)
Ottiene le informazioni sulla presentazione di Microsoft Store per i prodotti specificati associati all'app corrente.
public:
virtual IAsyncOperation<StoreProductQueryResult ^> ^ GetStoreProductsAsync(IIterable<Platform::String ^> ^ productKinds, IIterable<Platform::String ^> ^ storeIds) = GetStoreProductsAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<StoreProductQueryResult> GetStoreProductsAsync(IIterable<winrt::hstring> const& productKinds, IIterable<winrt::hstring> const& storeIds);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<StoreProductQueryResult> GetStoreProductsAsync(IEnumerable<string> productKinds, IEnumerable<string> storeIds);
function getStoreProductsAsync(productKinds, storeIds)
Public Function GetStoreProductsAsync (productKinds As IEnumerable(Of String), storeIds As IEnumerable(Of String)) As IAsyncOperation(Of StoreProductQueryResult)
Parametri
Matrice di stringhe che specificano i tipi di prodotti per i quali si desidera recuperare le informazioni di presentazione. Per un elenco dei valori stringa supportati, vedi la proprietà ProductKind.
Matrice delle stringhe ID dello Store per i prodotti per i quali si desidera recuperare le informazioni sulla presentazione.
Restituisce
Un'operazione asincrona che, al termine del completamento, restituisce un oggetto StoreProductQueryResult che contiene informazioni di presentazione per i prodotti specificati e qualsiasi informazione di errore pertinente.
- Attributi
Commenti
Questo metodo restituisce informazioni sulla presentazione per i prodotti specificati associati all'app corrente, indipendentemente dal fatto che i prodotti siano attualmente disponibili per l'acquisto all'interno dell'app corrente. Per recuperare informazioni per tutti i prodotti attualmente acquistabili dall'app corrente, usare invece l'overload GetStoreProductsAsync o il metodo GetAssociatedStoreProductsAsync.
L'ID dello Store per un prodotto è disponibile nel Centro per i partner e viene restituito anche dalla proprietà StoreId di StoreProduct che rappresenta il prodotto. Per altre informazioni, vedere Archiviare gli ID.
Per altre informazioni sull'uso di questo metodo, incluso un esempio di codice, vedere Ottenere informazioni sul prodotto per le app e i componenti aggiuntivi.
Vedi anche
Si applica a
GetStoreProductsAsync(IIterable<String>, IIterable<String>, StoreProductOptions)
Ottiene le informazioni sulla presentazione di Microsoft Store per i prodotti specificati associati all'app corrente, con l'opzione per usare un filtro per la query.
public:
virtual IAsyncOperation<StoreProductQueryResult ^> ^ GetStoreProductsAsync(IIterable<Platform::String ^> ^ productKinds, IIterable<Platform::String ^> ^ storeIds, StoreProductOptions ^ storeProductOptions) = GetStoreProductsAsync;
/// [Windows.Foundation.Metadata.Overload("GetStoreProductsWithOptionsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<StoreProductQueryResult> GetStoreProductsAsync(IIterable<winrt::hstring> const& productKinds, IIterable<winrt::hstring> const& storeIds, StoreProductOptions const& storeProductOptions);
[Windows.Foundation.Metadata.Overload("GetStoreProductsWithOptionsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<StoreProductQueryResult> GetStoreProductsAsync(IEnumerable<string> productKinds, IEnumerable<string> storeIds, StoreProductOptions storeProductOptions);
function getStoreProductsAsync(productKinds, storeIds, storeProductOptions)
Public Function GetStoreProductsAsync (productKinds As IEnumerable(Of String), storeIds As IEnumerable(Of String), storeProductOptions As StoreProductOptions) As IAsyncOperation(Of StoreProductQueryResult)
Parametri
Matrice di stringhe che specificano i tipi di prodotti per i quali si desidera recuperare le informazioni di presentazione. Per un elenco dei valori stringa supportati, vedi la proprietà ProductKind.
Matrice delle stringhe ID dello Store per i prodotti per i quali si desidera recuperare le informazioni sulla presentazione.
- storeProductOptions
- StoreProductOptions
Oggetto contenente un filtro che verrà usato per la query.
Restituisce
Un'operazione asincrona che, al termine del completamento, restituisce un oggetto StoreProductQueryResult che contiene informazioni di presentazione per i prodotti specificati e qualsiasi informazione di errore pertinente.
- Attributi
Requisiti Windows
Famiglia di dispositivi |
Windows 10, version 1803 (è stato introdotto in 10.0.17134.0)
|
API contract |
Windows.Services.Store.StoreContract (è stato introdotto in v3.0)
|
Commenti
Per restituire informazioni solo per i prodotti che attualmente possono essere acquistati dall'app corrente, aggiungere la Purchase
stringa di filtro alla proprietà ActionFilters dell'oggetto passato al parametro storeProductOptions . Per ottenere informazioni per tutti i prodotti specificati associati all'app corrente, indipendentemente dal fatto che siano attualmente disponibili per l'acquisto, usare invece l'overload GetStoreProductsAsync .
L'ID dello Store per un prodotto è disponibile nel Centro per i partner e viene restituito anche dalla proprietà StoreId di StoreProduct che rappresenta il prodotto. Per altre informazioni, vedere Archiviare gli ID.
Per altre informazioni sull'uso di questo metodo, incluso un esempio di codice, vedere Ottenere informazioni sul prodotto per le app e i componenti aggiuntivi.