AppResourceGroupInfoWatcherEventArgs.AppDiagnosticInfos Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient des informations de diagnostic pour le groupe de ressources.
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)
Valeur de propriété
Informations de diagnostic pour les applications associées à AppResourceGroupInfo pour l’événement actuel.
Configuration requise pour Windows
Fonctionnalités de l’application |
appDiagnostics
|
Exemples
// 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);
}
}
Remarques
En règle générale, il n’y aura qu’une seule application associée à AppResourceGroupInfo, mais il peut y en avoir d’autres.