 | ConfigurationItemFactoryParseMessageTemplates Property |
Perform message template parsing and formatting of LogEvent messages (True = Always, False = Never, Null = Auto Detect)
Namespace:
NLog.Config
Assembly:
NLog (in NLog.dll) Version: 6.0.0+cfb73701cda54e2410b006f649f072e90daef707
Syntaxpublic bool? ParseMessageTemplates { get; set; }
Public Property ParseMessageTemplates As Boolean?
Get
Set
Dim instance As ConfigurationItemFactory
Dim value As Boolean?
value = instance.ParseMessageTemplates
instance.ParseMessageTemplates = value
member ParseMessageTemplates : Nullable<bool> with get, set
Property Value
Type:
NullableBoolean
Remarks
-
(Auto Detect) : NLog-parser checks
Message for positional parameters, and will then fallback to string.Format-rendering.
-
: Always performs the parsing of
Message and rendering of
FormattedMessage using the NLog-parser (Allows custom formatting with
IValueFormatter)
-
: Always performs parsing and rendering using string.Format (Fastest if not using structured logging)
See Also