StringMatchFilter ClassApache log4net™ SDK Documentation
Simple filter to match a string in the rendered message
Inheritance Hierarchy

SystemObject
  log4net.FilterFilterSkeleton
    log4net.FilterStringMatchFilter
      log4net.FilterPropertyFilter

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

public class StringMatchFilter : FilterSkeleton

The StringMatchFilter type exposes the following members.

Constructors

  NameDescription
Public methodStringMatchFilter
Default constructor
Top
Properties

  NameDescription
Public propertyAcceptOnMatch
Public propertyNext
Property to get and set the next filter
(Inherited from FilterSkeleton.)
Public propertyRegexToMatch
Sets the regular expression to match
Public propertyStringToMatch
Sets the static string to match
Top
Methods

  NameDescription
Public methodActivateOptions
Initialize and precompile the Regex if required
(Overrides FilterSkeletonActivateOptions.)
Public methodDecide
Check if this filter should allow the event to be logged
(Overrides FilterSkeletonDecide(LoggingEvent).)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a String that represents the current Object.
(Inherited from Object.)
Top
Fields

  NameDescription
Protected fieldm_acceptOnMatch
Flag to indicate the behavior when we have a match
Protected fieldm_regexToMatch
A regex object to match (generated from m_stringRegexToMatch)
Protected fieldm_stringRegexToMatch
A string regex to match
Protected fieldm_stringToMatch
The string to substring match against the message
Top
Remarks

Simple filter to match a string in the rendered message

See Also

Reference