LogActivityKind Enumeration |
Kinds of LogActivity.
Namespace: PostSharp.Patterns.Diagnostics
Assembly: PostSharp.Patterns.Common (in PostSharp.Patterns.Common.dll) Version: 2023.0.3.0 (2023.0.3.0)
C#
public enum LogActivityKind
Member name | Value | Description | |
---|---|---|---|
Default | 0 | Default, created by OpenActivity(LogActivityOptions, String) or OpenAsyncActivity(LogActivityOptions, String). | |
TaskLauncher | 1 | Activity of creating a Task. | |
Task | 2 | Code running in a Task. | |
Wait | 3 | Activity of waiting for a Task or another dispatcher object. | |
OutgoingRequest | 4 | An outgoing request. The property "RequestId" is expected to be defined. | |
IncomingRequest | 5 | An incoming request of the service (typically a web request). A transaction boundary. | |
Transaction | 6 | A custom transaction. |