PostSharpAPI ReferencePost­Sharp.​Patterns.​DiagnosticsWrite­Message­OptionsWrite­Message­Options
Open sandboxFocus

WriteMessageOptions Constructor

WriteMessageOptions(Object)

Initializes a WriteMessageOptions and optionally specifies the properties given a CLR object.

Declaration
public WriteMessageOptions(object data = null)
Parameters
Type Name Description
Object data

Optional. Specifies the properties of the WriteMessageOptions, typically specified as an instance of a well-known or anonymous CLR type. The resulting LogEventData will have the default LogEventMetadata, which means that all CLR properties will be exposed as logging properties unless they are annotated with LoggingPropertyOptionsAttribute.

WriteMessageOptions(in LogEventData)

Initializes a WriteMessageOptions and optionally specifies the properties given a LogEventData.

Declaration
public WriteMessageOptions(in LogEventData data)
Parameters
Type Name Description
LogEventData data

Optional. Specifies the properties of the WriteMessageOptions. See LogEventData.