Enum 1921 Profiling Aggregation Type in 25

App
System Application
Namespace
System.Tooling

Values, 5

Versions171819202122232425262728latest

Source242526272829

Source in 25

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)
    {
    }
}

Values, 5

IdNameObsolete
0None-
1App Publisher-
2App Name-
3Object-
4Method-