次の方法で共有


AppInstallManager.SearchForAllUpdatesAsync メソッド

定義

オーバーロード

SearchForAllUpdatesAsync()

現在のコンピューターまたはデバイスにインストールされているアプリに対して利用可能なすべての更新プログラムを検索します。

SearchForAllUpdatesAsync(String)

テレメトリ データを生成するオプションを使用して、現在のコンピューターまたはデバイスにインストールされているアプリに対して利用可能なすべての更新プログラムを検索します。

SearchForAllUpdatesAsync(String, String, AppUpdateOptions)

現在のコンピューターまたはデバイスにインストールされているアプリに対して使用可能なすべての更新プログラムを検索します。アプリの強制的な再起動を許可する機能と、テレメトリ データを生成するオプションを使用します。

SearchForAllUpdatesAsync()

現在のコンピューターまたはデバイスにインストールされているアプリに対して利用可能なすべての更新プログラムを検索します。

public:
 virtual IAsyncOperation<IVectorView<AppInstallItem ^> ^> ^ SearchForAllUpdatesAsync() = SearchForAllUpdatesAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<AppInstallItem>> SearchForAllUpdatesAsync();
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<AppInstallItem>> SearchForAllUpdatesAsync();
function searchForAllUpdatesAsync()
Public Function SearchForAllUpdatesAsync () As IAsyncOperation(Of IReadOnlyList(Of AppInstallItem))

戻り値

正常に完了すると、利用可能な更新プログラムを含むアプリのコレクションを返す非同期操作。 非同期プログラミングを使用する場合、結果の種類は AppInstallItem 項目の読み取り専用リスト/ベクターになります。 (C++ の 場合は IVectorView<AppInstallItem> の API、.NET の 場合は IReadOnlyList<AppInstallItem> の API を使用できます)。

属性

Windows の要件

アプリの機能
runFullTrust

こちらもご覧ください

適用対象

SearchForAllUpdatesAsync(String)

テレメトリ データを生成するオプションを使用して、現在のコンピューターまたはデバイスにインストールされているアプリに対して利用可能なすべての更新プログラムを検索します。

public:
 virtual IAsyncOperation<IVectorView<AppInstallItem ^> ^> ^ SearchForAllUpdatesAsync(Platform::String ^ correlationVector) = SearchForAllUpdatesAsync;
/// [Windows.Foundation.Metadata.Overload("SearchForAllUpdatesWithTelemetryAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<AppInstallItem>> SearchForAllUpdatesAsync(winrt::hstring const& correlationVector);
[Windows.Foundation.Metadata.Overload("SearchForAllUpdatesWithTelemetryAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<AppInstallItem>> SearchForAllUpdatesAsync(string correlationVector);
function searchForAllUpdatesAsync(correlationVector)
Public Function SearchForAllUpdatesAsync (correlationVector As String) As IAsyncOperation(Of IReadOnlyList(Of AppInstallItem))

パラメーター

correlationVector
String

Platform::String

winrt::hstring

テレメトリ データの生成に使用できる相関ベクトル文字列。

戻り値

正常に完了すると、利用可能な更新プログラムを含むアプリのコレクションを返す非同期操作。 非同期プログラミングを使用する場合、結果の種類は AppInstallItem 項目の読み取り専用リスト/ベクターになります。 (C++ の 場合は IVectorView<AppInstallItem> の API、.NET の 場合は IReadOnlyList<AppInstallItem> の API を使用できます)。

属性

Windows の要件

デバイス ファミリ
Windows 10 (10.0.10586.0 で導入)
API contract
Windows.Foundation.UniversalApiContract (v2.0 で導入)
アプリの機能
runFullTrust

こちらもご覧ください

適用対象

SearchForAllUpdatesAsync(String, String, AppUpdateOptions)

現在のコンピューターまたはデバイスにインストールされているアプリに対して使用可能なすべての更新プログラムを検索します。アプリの強制的な再起動を許可する機能と、テレメトリ データを生成するオプションを使用します。

public:
 virtual IAsyncOperation<IVectorView<AppInstallItem ^> ^> ^ SearchForAllUpdatesAsync(Platform::String ^ correlationVector, Platform::String ^ clientId, AppUpdateOptions ^ updateOptions) = SearchForAllUpdatesAsync;
/// [Windows.Foundation.Metadata.Overload("SearchForAllUpdatesWithUpdateOptionsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<AppInstallItem>> SearchForAllUpdatesAsync(winrt::hstring const& correlationVector, winrt::hstring const& clientId, AppUpdateOptions const& updateOptions);
[Windows.Foundation.Metadata.Overload("SearchForAllUpdatesWithUpdateOptionsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<AppInstallItem>> SearchForAllUpdatesAsync(string correlationVector, string clientId, AppUpdateOptions updateOptions);
function searchForAllUpdatesAsync(correlationVector, clientId, updateOptions)
Public Function SearchForAllUpdatesAsync (correlationVector As String, clientId As String, updateOptions As AppUpdateOptions) As IAsyncOperation(Of IReadOnlyList(Of AppInstallItem))

パラメーター

correlationVector
String

Platform::String

winrt::hstring

テレメトリ データの生成に使用できる相関ベクトル文字列。

clientId
String

Platform::String

winrt::hstring

呼び出し元の ID。

updateOptions
AppUpdateOptions

強制アプリの再起動を許可する機能など、操作の追加オプションを提供します。

戻り値

正常に完了すると、利用可能な更新プログラムを含むアプリのコレクションを返す非同期操作。 非同期プログラミングを使用する場合、結果の種類は AppInstallItem 項目の読み取り専用リスト/ベクターになります。 (C++ の 場合は IVectorView<AppInstallItem> の API、.NET の 場合は IReadOnlyList<AppInstallItem> の API を使用できます)。

属性

Windows の要件

デバイス ファミリ
Windows 10, version 1803 (10.0.17134.0 で導入)
API contract
Windows.Foundation.UniversalApiContract (v6.0 で導入)
アプリの機能
runFullTrust

適用対象