Enum 1921 Profiling Aggregation Type

App
System Application
Namespace
System.Tooling
Versions
20-28

Values, 5

Versions171819202122232425262728

Source242526272829

Source in 29

src/System Application/App/Performance Profiler/src/ProfilingAggregationType.Enum.al49 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.Tooling;

/// <summary>
/// The types of aggregation over profiling nodes.
/// </summary>
enum 1921 "Profiling Aggregation Type"
{
    Access = Internal;

    /// <summary>
    /// No aggregation.
    /// </summary>
    value(0; None)
    {
    }

    /// <summary>
    /// Aggregate by app publisher.
    /// </summary>
    value(1; "App Publisher")
    {
    }

    /// <summary>
    /// Aggregate by app publisher and name.
    /// </summary>
    value(2; "App Name")
    {
    }

    /// <summary>
    /// Aggregate by application object.
    /// </summary>
    value(3; Object)
    {
    }

    /// <summary>
    /// Aggregate by app application object and method.
    /// </summary>
    value(4; Method)
    {
    }
}