| LoggingConfigurationAddRuleForAllLevels Method (Target, String, Boolean) |
Add a rule for all loglevels.
Namespace:
NLog.Config
Assembly:
NLog (in NLog.dll) Version: 5.3.4+73d83d3161d31288ca5c554cc50d27b6bed5f28b
Syntax public void AddRuleForAllLevels(
Target target,
string loggerNamePattern,
bool final
)
Public Sub AddRuleForAllLevels (
target As Target,
loggerNamePattern As String,
final As Boolean
)
Dim instance As LoggingConfiguration
Dim target As Target
Dim loggerNamePattern As String
Dim final As Boolean
instance.AddRuleForAllLevels(target,
loggerNamePattern, final)
member AddRuleForAllLevels :
target : Target *
loggerNamePattern : string *
final : bool -> unit
Parameters
- target
- Type: NLog.TargetsTarget
Target to be written to when the rule matches. - loggerNamePattern
- Type: SystemString
Logger name pattern. It may include the '*' wildcard at the beginning, at the end or at both ends. - final
- Type: SystemBoolean
Gets or sets a value indicating whether to quit processing any further rule when this one matches.
See Also