Click or drag to resize

LogLevelGreaterThan Operator

Compares two LogLevel objects and returns a value indicating whether the first one is greater than the second one.

Namespace:  NLog
Assembly:  NLog (in NLog.dll) Version: 5.3.1+cf6675da40ccfd4c8c526a3b2bdbeed3442910a1
Syntax
public static bool operator >(
	LogLevel level1,
	LogLevel level2
)

Parameters

level1
Type: NLogLogLevel
The first level.
level2
Type: NLogLogLevel
The second level.

Return Value

Type: Boolean
The value of level1.Ordinal > level2.Ordinal.
See Also