PropertyFilter Decide Method Apache log4net™ SDK Documentation
Check if this filter should allow the event to be logged

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
see remarks

Implements

IFilter Decide(LoggingEvent)
Remarks

The event property for the Key is matched against the StringToMatch. If the StringToMatch occurs as a substring within the property value then a match will have occurred. If no match occurs this function will return Neutral allowing other filters to check the event. If a match occurs then the value of AcceptOnMatch is checked. If it is true then Accept is returned otherwise Deny is returned.

See Also