EventActivityOptions Enumeration

.NET Framework (current version)
 

Specifies the tracking of activity start and stop events.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Namespace:   System.Diagnostics.Tracing
Assembly:  mscorlib (in mscorlib.dll)

[FlagsAttribute]
public enum class EventActivityOptions

Member nameDescription
Detachable

Allow overlapping activities. By default, activity starts and stops must be property nested. That is, a sequence of Start A, Start B, Stop A, Stop B is not allowed will result in B stopping at the same time as A.

Disable

Turn off start and stop tracking.

None

Use the default behavior for start and stop tracking.

Recursive

Allow recursive activity starts. By default, an activity cannot be recursive. That is, a sequence of Start A, Start A, Stop A, Stop A is not allowed. Unintentional recursive activities can occur if the app executes and for some the stop is not reached before another start is called.

Universal Windows Platform
Available since 10
.NET Framework
Available since 4.6
Return to top
Show: