Open sandboxFocus

Constructor WriteMessageOptions

WriteMessageOptions(object?)

Initializes a new instance of the WriteMessageOptions struct optionally specifying the properties with 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 new instance of the WriteMessageOptions struct specifying the properties with a LogEventData.

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

Specifies the properties of the WriteMessageOptions. See LogEventData.