AppInstallManager.SearchForUpdatesAsync Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
SearchForUpdatesAsync(String, String) |
Sucht nach Updates für die angegebene App. |
SearchForUpdatesAsync(String, String, String, String) |
Sucht nach Updates für die angegebene App mit der Option zum Generieren von Telemetriedaten. |
SearchForUpdatesAsync(String, String, String, String, AppUpdateOptions) |
Sucht nach Updates für die angegebene App, mit der Möglichkeit, einen erzwungenen App-Neustart zuzulassen, und die Option zum Generieren von Telemetriedaten. |
SearchForUpdatesAsync(String, String)
Sucht nach Updates für die angegebene App.
public:
virtual IAsyncOperation<AppInstallItem ^> ^ SearchForUpdatesAsync(Platform::String ^ productId, Platform::String ^ skuId) = SearchForUpdatesAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<AppInstallItem> SearchForUpdatesAsync(winrt::hstring const& productId, winrt::hstring const& skuId);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<AppInstallItem> SearchForUpdatesAsync(string productId, string skuId);
function searchForUpdatesAsync(productId, skuId)
Public Function SearchForUpdatesAsync (productId As String, skuId As String) As IAsyncOperation(Of AppInstallItem)
Parameter
- productId
-
String
Platform::String
winrt::hstring
Die Produkt-ID der App, die nach Updates abgefragt werden soll.
- skuId
-
String
Platform::String
winrt::hstring
Die SKU, die nach Updates abgefragt werden soll.
Gibt zurück
Ein asynchroner Vorgang, der nach erfolgreichem Abschluss ein AppInstallItem-Objekt zurückgibt, das das verfügbare Update darstellt.
- Attribute
Windows-Anforderungen
App-Funktionen |
runFullTrust
|
Weitere Informationen
Gilt für:
SearchForUpdatesAsync(String, String, String, String)
Sucht nach Updates für die angegebene App mit der Option zum Generieren von Telemetriedaten.
public:
virtual IAsyncOperation<AppInstallItem ^> ^ SearchForUpdatesAsync(Platform::String ^ productId, Platform::String ^ skuId, Platform::String ^ catalogId, Platform::String ^ correlationVector) = SearchForUpdatesAsync;
/// [Windows.Foundation.Metadata.Overload("SearchForUpdatesWithTelemetryAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<AppInstallItem> SearchForUpdatesAsync(winrt::hstring const& productId, winrt::hstring const& skuId, winrt::hstring const& catalogId, winrt::hstring const& correlationVector);
[Windows.Foundation.Metadata.Overload("SearchForUpdatesWithTelemetryAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<AppInstallItem> SearchForUpdatesAsync(string productId, string skuId, string catalogId, string correlationVector);
function searchForUpdatesAsync(productId, skuId, catalogId, correlationVector)
Public Function SearchForUpdatesAsync (productId As String, skuId As String, catalogId As String, correlationVector As String) As IAsyncOperation(Of AppInstallItem)
Parameter
- productId
-
String
Platform::String
winrt::hstring
Die Produkt-ID der App, die nach Updates abgefragt werden soll.
- skuId
-
String
Platform::String
winrt::hstring
Die SKU-ID der App, die nach Updates abgefragt werden soll.
- catalogId
-
String
Platform::String
winrt::hstring
Die Katalog-ID der App, die nach Updates abgefragt werden soll.
- correlationVector
-
String
Platform::String
winrt::hstring
Eine Korrelationsvektorzeichenfolge, die zum Generieren von Telemetriedaten verwendet werden kann.
Gibt zurück
Ein asynchroner Vorgang, der nach erfolgreichem Abschluss ein AppInstallItem-Objekt zurückgibt, das das verfügbare Update darstellt.
- Attribute
Windows-Anforderungen
Gerätefamilie |
Windows 10 (eingeführt in 10.0.10586.0)
|
API contract |
Windows.Foundation.UniversalApiContract (eingeführt in v2.0)
|
App-Funktionen |
runFullTrust
|
Weitere Informationen
Gilt für:
SearchForUpdatesAsync(String, String, String, String, AppUpdateOptions)
Sucht nach Updates für die angegebene App, mit der Möglichkeit, einen erzwungenen App-Neustart zuzulassen, und die Option zum Generieren von Telemetriedaten.
public:
virtual IAsyncOperation<AppInstallItem ^> ^ SearchForUpdatesAsync(Platform::String ^ productId, Platform::String ^ skuId, Platform::String ^ correlationVector, Platform::String ^ clientId, AppUpdateOptions ^ updateOptions) = SearchForUpdatesAsync;
/// [Windows.Foundation.Metadata.Overload("SearchForUpdatesWithUpdateOptionsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<AppInstallItem> SearchForUpdatesAsync(winrt::hstring const& productId, winrt::hstring const& skuId, winrt::hstring const& correlationVector, winrt::hstring const& clientId, AppUpdateOptions const& updateOptions);
[Windows.Foundation.Metadata.Overload("SearchForUpdatesWithUpdateOptionsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<AppInstallItem> SearchForUpdatesAsync(string productId, string skuId, string correlationVector, string clientId, AppUpdateOptions updateOptions);
function searchForUpdatesAsync(productId, skuId, correlationVector, clientId, updateOptions)
Public Function SearchForUpdatesAsync (productId As String, skuId As String, correlationVector As String, clientId As String, updateOptions As AppUpdateOptions) As IAsyncOperation(Of AppInstallItem)
Parameter
- productId
-
String
Platform::String
winrt::hstring
Die Produkt-ID der App, die nach Updates abgefragt werden soll.
- skuId
-
String
Platform::String
winrt::hstring
Die SKU-ID der App, die nach Updates abgefragt werden soll.
- correlationVector
-
String
Platform::String
winrt::hstring
Eine Korrelationsvektorzeichenfolge, die zum Generieren von Telemetriedaten verwendet werden kann.
- clientId
-
String
Platform::String
winrt::hstring
Die ID des Aufrufers.
- updateOptions
- AppUpdateOptions
Stellt zusätzliche Optionen für den Vorgang bereit, einschließlich der Möglichkeit, einen erzwungenen App-Neustart zuzulassen.
Gibt zurück
Ein asynchroner Vorgang, der nach erfolgreichem Abschluss ein AppInstallItem-Objekt zurückgibt, das das verfügbare Update darstellt.
- Attribute
Windows-Anforderungen
Gerätefamilie |
Windows 10, version 1803 (eingeführt in 10.0.17134.0)
|
API contract |
Windows.Foundation.UniversalApiContract (eingeführt in v6.0)
|
App-Funktionen |
runFullTrust
|