mscorlib(4.0.0.0) API with additions
EventActivityOptions.cs
2 {
4  [Flags]
5  [__DynamicallyInvokable]
6  public enum EventActivityOptions
7  {
9  [__DynamicallyInvokable]
10  None = 0x0,
12  [__DynamicallyInvokable]
13  Disable = 0x2,
15  [__DynamicallyInvokable]
16  Recursive = 0x4,
18  [__DynamicallyInvokable]
19  Detachable = 0x8
20  }
21 }
EventActivityOptions
Specifies the tracking of activity start and stop events.
Allow recursive activity starts. By default, an activity cannot be recursive. That is,...
Allow overlapping activities. By default, activity starts and stops must be property nested....