Kinds of LogActivity.
Namespace: PostSharp.Patterns.Diagnostics
Assembly: PostSharp.Patterns.Common.dll
Syntax
public enum LogActivityKindFields
| Name | Description |
|---|---|
| Default | Default, created by OpenActivity(LogActivityOptions, string) or OpenAsyncActivity(LogActivityOptions, string). |
| IncomingRequest | An incoming request of the service (typically a web request). A transaction boundary. |
| OutgoingRequest | An outgoing request. The property "RequestId" is expected to be defined. |
| Task | Code running in a Task. |
| TaskLauncher | Activity of creating a Task. |
| Transaction | A custom transaction. |
| Wait | Activity of waiting for a Task or another dispatcher object. |