Enum 1925 Sampling Interval in 28

App
System Application
Namespace
System.Tooling

Values, 4

Versions171819202122232425262728latest

Source242526272829

Source in 28

src/System Application/App/Performance Profiler/src/SamplingInterval.Enum.al44 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;

enum 1925 "Sampling Interval"
{
    Extensible = false;
    Access = Public;

    /// <summary>
    /// The sampling interval is not specified.
    /// </summary>
    value(0; None)
    {
        Caption = 'Not specified';
    }

    /// <summary>
    /// Sample every 50 milliseconds
    /// </summary>
    value(50; SampleEvery50ms)
    {
        Caption = '50 ms';
    }

    /// <summary>
    /// Sample every 100 milliseconds
    /// </summary>
    value(100; SampleEvery100ms)
    {
        Caption = '100 ms';
    }

    /// <summary>
    /// Sample every 150 milliseconds
    /// </summary>
    value(150; SampleEvery150ms)
    {
        Caption = '150 ms';
    }
}

Values, 4

IdNameObsolete
0None-
50SampleEvery50ms-
100SampleEvery100ms-
150SampleEvery150ms-