AppResourceGroupInfoWatcherEventArgs.AppDiagnosticInfos プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
リソース グループの診断情報を取得します。
public:
property IVectorView<AppDiagnosticInfo ^> ^ AppDiagnosticInfos { IVectorView<AppDiagnosticInfo ^> ^ get(); };
IVectorView<AppDiagnosticInfo> AppDiagnosticInfos();
public IReadOnlyList<AppDiagnosticInfo> AppDiagnosticInfos { get; }
var iVectorView = appResourceGroupInfoWatcherEventArgs.appDiagnosticInfos;
Public ReadOnly Property AppDiagnosticInfos As IReadOnlyList(Of AppDiagnosticInfo)
プロパティ値
現在のイベントの AppResourceGroupInfo に関連付けられているアプリの診断情報。
Windows の要件
アプリの機能 |
appDiagnostics
|
例
// A resource group has been added to the list in the AppDiagnosticInfo.
private void OnResourceGroupAdded(
AppResourceGroupInfoWatcher sender, AppResourceGroupInfoWatcherEventArgs args)
{
// A resource group can be associated with multiple apps. The event args here
// indicate which apps are part of the watched resource group. Otherwise the
// app has to keep a map between them.
if (args.AppDiagnosticInfos.Count > 0)
{
Debug.WriteLine("ResourceGroup added for {0}", args.AppDiagnosticInfos[0].AppInfo.DisplayInfo);
}
}
注釈
通常、 AppResourceGroupInfo に関連付けられているアプリは 1 つだけですが、それ以上の場合もあります。