Simple filter to match a string in the rendered message
Inheritance Hierarchy
log4net.FilterFilterSkeleton
log4net.FilterStringMatchFilter
log4net.FilterPropertyFilter
Namespace: log4net.Filter
Assembly: log4net (in log4net.dll) Version: 2.0.6.0-.NET 4.0
Syntax
The StringMatchFilter type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| StringMatchFilter |
Default constructor
|
Properties
| Name | Description | |
|---|---|---|
| AcceptOnMatch | ||
| Next |
Property to get and set the next filter
(Inherited from FilterSkeleton.) | |
| RegexToMatch |
Sets the regular expression to match
| |
| StringToMatch |
Sets the static string to match
|
Methods
| Name | Description | |
|---|---|---|
| ActivateOptions |
Initialize and precompile the Regex if required
(Overrides FilterSkeletonActivateOptions.) | |
| Decide |
Check if this filter should allow the event to be logged
(Overrides FilterSkeletonDecide(LoggingEvent).) | |
| Equals | (Inherited from Object.) | |
| Finalize |
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.) | |
| GetHashCode |
Serves as a hash function for a particular type.
(Inherited from Object.) | |
| GetType |
Gets the Type of the current instance.
(Inherited from Object.) | |
| MemberwiseClone |
Creates a shallow copy of the current Object.
(Inherited from Object.) | |
| ToString | (Inherited from Object.) |
Fields
| Name | Description | |
|---|---|---|
| m_acceptOnMatch |
Flag to indicate the behavior when we have a match
| |
| m_regexToMatch |
A regex object to match (generated from m_stringRegexToMatch)
| |
| m_stringRegexToMatch |
A string regex to match
| |
| m_stringToMatch |
The string to substring match against the message
|
Remarks
Simple filter to match a string in the rendered message
See Also