Classes
LogRecordBuilder
Builds log record (typically, but not necessarily a string) for an action. You can think of the LogRecordBuilder as a semantic StringBuilder. PostSharp emits code that invoke methods such as SetParameter<T>(int, string, ParameterKind, string, T) or SetReturnValue<T>(int, string, string, T, IFormatter<T>), and the responsibility of the LogRecordBuilder is to format a record and emit it to the back-end.
TextLogRecordBuilder
An implementation of LogRecordBuilder that builds text-based log records. This class is the base class for most back-ends.
Enums
SemanticParameterKind
Enumerates the kinds of semantic parameters passed to the AppendSemanticParameter<T>(SemanticParameterKind, ArraySegment<char>, T, IFormatter<T>, string, int) method.
The enumeration is a bit mask. Values can be combined with the |
operator.