Enum 1932 Perf. Profile Activity Type
- App
- System Application
- Namespace
- System.Tooling
- Versions
- 25-28
Versions171819202122232425262728
Source in 29
src/System Application/App/Performance Profiler/src/PerfProfileActivityType.enum.al38 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 supported activity types for creating scheduled based sampling profiles
/// </summary>
enum 1932 "Perf. Profile Activity Type"
{
Access = Public;
Extensible = false;
/// <summary>
/// The web client activity type
/// </summary>
value(0; "Web Client")
{
Caption = 'Activities in the browser';
}
/// <summary>
/// The background activity type
/// </summary>
value(1; "Background")
{
Caption = 'Background tasks (incl. job queues)';
}
/// <summary>
/// The web api activity type
/// </summary>
value(2; "Web API Client")
{
Caption = 'Web service calls';
}
}