| LayoutFromString Method (String, Boolean) |
Namespace:
NLog.Layouts
Assembly:
NLog (in NLog.dll) Version: 5.3.4+73d83d3161d31288ca5c554cc50d27b6bed5f28b
Syntax public static Layout FromString(
string layoutText,
bool throwConfigExceptions
)
Public Shared Function FromString (
layoutText As String,
throwConfigExceptions As Boolean
) As Layout
Dim layoutText As String
Dim throwConfigExceptions As Boolean
Dim returnValue As Layout
returnValue = Layout.FromString(layoutText,
throwConfigExceptions)
static member FromString :
layoutText : string *
throwConfigExceptions : bool -> Layout
Parameters
- layoutText
- Type: SystemString
The layout string. - throwConfigExceptions
- Type: SystemBoolean
Whether NLogConfigurationException should be thrown on parse errors (false = replace unrecognized tokens with a space).
Return Value
Type:
LayoutInstance of
SimpleLayout.
See Also