| LogLevelFromString Method |
Returns the
LogLevel that corresponds to the supplied
string.
Namespace:
NLog
Assembly:
NLog (in NLog.dll) Version: 5.3.4+73d83d3161d31288ca5c554cc50d27b6bed5f28b
Syntax public static LogLevel FromString(
string levelName
)
Public Shared Function FromString (
levelName As String
) As LogLevel
Dim levelName As String
Dim returnValue As LogLevel
returnValue = LogLevel.FromString(levelName)
static member FromString :
levelName : string -> LogLevel
Parameters
- levelName
- Type: SystemString
The textual representation of the log level.
Return Value
Type:
LogLevelThe enumeration value.
See Also