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와 연결된 앱은 하나만 있지만 더 있을 수 있습니다.