AppInstallManager.SearchForUpdatesAsync 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
SearchForUpdatesAsync(String, String) |
搜尋指定應用程式的更新。 |
SearchForUpdatesAsync(String, String, String, String) |
搜尋指定應用程式的更新,並選取產生遙測資料的選項。 |
SearchForUpdatesAsync(String, String, String, String, AppUpdateOptions) |
搜尋指定應用程式的更新,並能夠允許強制應用程式重新開機,以及產生遙測資料的選項。 |
SearchForUpdatesAsync(String, String)
搜尋指定應用程式的更新。
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)
參數
- productId
-
String
Platform::String
winrt::hstring
要查詢更新之應用程式的產品識別碼。
- skuId
-
String
Platform::String
winrt::hstring
要查詢更新的 SKU。
傳回
在成功完成時,非同步作業會傳回代表可用更新的 AppInstallItem 。
- 屬性
Windows 需求
應用程式功能 |
runFullTrust
|
另請參閱
適用於
SearchForUpdatesAsync(String, String, String, String)
搜尋指定應用程式的更新,並選取產生遙測資料的選項。
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)
參數
- productId
-
String
Platform::String
winrt::hstring
要查詢更新之應用程式的產品識別碼。
- skuId
-
String
Platform::String
winrt::hstring
要查詢更新之應用程式的 SKU 識別碼。
- catalogId
-
String
Platform::String
winrt::hstring
要查詢更新之應用程式的目錄識別碼。
- correlationVector
-
String
Platform::String
winrt::hstring
可用來產生遙測資料的相互關聯向量字串。
傳回
在成功完成時,非同步作業會傳回代表可用更新的 AppInstallItem 。
- 屬性
Windows 需求
裝置系列 |
Windows 10 (已於 10.0.10586.0 引進)
|
API contract |
Windows.Foundation.UniversalApiContract (已於 v2.0 引進)
|
應用程式功能 |
runFullTrust
|
另請參閱
適用於
SearchForUpdatesAsync(String, String, String, String, AppUpdateOptions)
搜尋指定應用程式的更新,並能夠允許強制應用程式重新開機,以及產生遙測資料的選項。
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)
參數
- productId
-
String
Platform::String
winrt::hstring
要查詢更新之應用程式的產品識別碼。
- skuId
-
String
Platform::String
winrt::hstring
要查詢更新之應用程式的 SKU 識別碼。
- correlationVector
-
String
Platform::String
winrt::hstring
可用來產生遙測資料的相互關聯向量字串。
- clientId
-
String
Platform::String
winrt::hstring
呼叫端的識別碼。
- updateOptions
- AppUpdateOptions
提供作業的其他選項,包括允許強制應用程式重新開機的能力。
傳回
在成功完成時,非同步作業會傳回代表可用更新的 AppInstallItem 。
- 屬性
Windows 需求
裝置系列 |
Windows 10, version 1803 (已於 10.0.17134.0 引進)
|
API contract |
Windows.Foundation.UniversalApiContract (已於 v6.0 引進)
|
應用程式功能 |
runFullTrust
|