InstalledDesktopApp クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
現在のユーザーが使用できる、インストールされている Win32 アプリの一覧を提供します。 これには、すべてのユーザーに対してインストールされたアプリと、現在のユーザー専用のアプリが含まれます。
public ref class InstalledDesktopApp sealed : IStringable
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 393216)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class InstalledDesktopApp final : IStringable
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 393216)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class InstalledDesktopApp : IStringable
Public NotInheritable Class InstalledDesktopApp
Implements IStringable
- 継承
- 属性
- 実装
Windows の要件
デバイス ファミリ |
Windows 10, version 1803 (10.0.17134.0 で導入)
|
API contract |
Windows.Foundation.UniversalApiContract (v6.0 で導入)
|
アプリの機能 |
packageQuery
|
例
IReadOnlyList<IInstalledDesktopApp> installedApps = await InstalledDesktopApp.GetInventoryAsync();
foreach (var app in installedApps)
{
Console.WriteLine("Display Name: " + app.DisplayName);
Console.WriteLine("Application ID: " + app.Id);
Console.WriteLine("Publisher: " + app.Publisher);
Console.WriteLine("Display Version: " + app.DisplayVersion);
}
注釈
InstalledDesktopApp は packageQuery 機能をチェックし、呼び出し元が機能を保持していない場合は空のベクターを返します。
プロパティ
DisplayName |
インストールされているデスクトップ アプリの表示名を取得します。 |
DisplayVersion |
インストールされているデスクトップ アプリの文字列ベースのバージョンを取得します。 |
Id |
インストールされているデスクトップ アプリの文字列ベースの ID を取得します。 |
Publisher |
インストールされているデスクトップ アプリの発行元を取得します。 |
メソッド
GetInventoryAsync() |
現在のユーザーが使用できる、インストールされている Win32 アプリの一覧を取得します。 これには、すべてのユーザーに対してインストールされたアプリと、現在のユーザー専用のアプリが含まれます。 |
ToString() |
現在の InstalledDesktopApp オブジェクトを表す文字列を返します。 |