EventActivityOptions Enum
Definition
Specifies the tracking of activity start and stop events.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
public enum class EventActivityOptions
[System.Flags]
public enum EventActivityOptions
type EventActivityOptions =
Public Enum EventActivityOptions
- Inheritance
- Attributes
Fields
Detachable | 8 | 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 | 2 | Turn off start and stop tracking. |
None | 0 | Use the default behavior for start and stop tracking. |
Recursive | 4 | 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. |