DenyAllFilter Decide Method Apache log4net™ SDK Documentation
Always returns the integer constant Deny

Namespace: log4net.Filter
Assembly: log4net (in log4net.dll) Version: 1.2.15.0 (1.2.15.0)
Syntax

public override FilterDecision Decide(
	LoggingEvent loggingEvent
)

Return Value

Type: FilterDecision
Always returns Deny

Implements

IFilter Decide(LoggingEvent)
Remarks

Ignores the event being logged and just returns Deny. This can be used to change the default filter chain behavior from Accept to Deny. This filter should only be used as the last filter in the chain as any further filters will be ignored!

See Also