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

Namespace: log4net.Filter
Assembly: log4net (in log4net.dll) Version: 2.0.8.0-.NET 4.0
Syntax

public override FilterDecision Decide(
	LoggingEvent loggingEvent
)

Parameters

loggingEvent
Type: log4net.CoreLoggingEvent
the LoggingEvent to filter

Return Value

Type: FilterDecision
Always returns Deny

Implements

IFilterDecide(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

Reference