| SimpleLayoutEvaluate Method (String, LogEventInfo) |
Evaluates the specified text by expanding all layout renderers.
Namespace:
NLog.Layouts
Assembly:
NLog (in NLog.dll) Version: 5.3.4+73d83d3161d31288ca5c554cc50d27b6bed5f28b
Syntax public static string Evaluate(
string text,
LogEventInfo logEvent
)
Public Shared Function Evaluate (
text As String,
logEvent As LogEventInfo
) As String
Dim text As String
Dim logEvent As LogEventInfo
Dim returnValue As String
returnValue = SimpleLayout.Evaluate(text,
logEvent)
static member Evaluate :
text : string *
logEvent : LogEventInfo -> string
Parameters
- text
- Type: SystemString
The text to be evaluated. - logEvent
- Type: NLogLogEventInfo
Log event to be used for evaluation.
Return Value
Type:
StringThe input text with all occurrences of ${} replaced with
values provided by the appropriate layout renderers.
See Also