Kinds of log entry.
Namespace: Flashtrace.Records
Assembly: Flashtrace.dll
Syntax
[Flags]
public enum LogRecordKindFields
| Name | Description |
|---|---|
| ActivityEntry | Before an activity. |
| ActivityExit | When a activity exits, regardless of success or failure. |
| AsyncMethodAwait | Before async method suspends execution. |
| AsyncMethodResume | After async method resumes execution. |
| ExecutionPoint | Emitted by WriteExecutionPoint(). |
| IteratorMoveNext | Before the MoveNext() method of an iterator executes. |
| IteratorYield | When an iterator yields a result. |
| Message | A general-purpose log message. |
| MethodEntry | Before method execution. |
| MethodException | After failed method execution (the method threw an exception). |
| MethodOvertime | After a method execution is successful but lasted more time than the threshold. |
| MethodSuccess | After successful method execution. |
| None | The value was not set. |
| ValueChanged | When value of a field or property changes. |