AppResourceGroupInfoWatcherEventArgs.AppDiagnosticInfos Proprietà

Definizione

Ottiene informazioni di diagnostica per il gruppo di risorse.

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)

Valore della proprietà

Informazioni di diagnostica per le app associate all'evento corrente AppResourceGroupInfo .

Requisiti Windows

Funzionalità dell'app
appDiagnostics

Esempio

// 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);
    }
}

Commenti

In genere ci sarà solo un'app associata all'AppResourceGroupInfo, ma può esserci altro.

Si applica a