C# Class DOTNETIDS.RegexFilter

A Filter that uses Regular Expressions for its matching
Inheritance: Filter
Mostra file Open project: IndiansIncredible/.NetIDS

Public Methods

Method Description
Match ( string MatchText ) : bool

Match a regular expression rule against the input

RegexFilter ( string rule, List tags, int impact, string description ) : System

Create a new regex filter object

Replace ( string MatchText, MatchEvaluator me ) : string

Method Details

Match() public method

Match a regular expression rule against the input
public Match ( string MatchText ) : bool
MatchText string The input
return bool

RegexFilter() public method

Create a new regex filter object
public RegexFilter ( string rule, List tags, int impact, string description ) : System
rule string The Filter's rule
tags List The Filter's tags
impact int The Filter's impact level
description string The Filter's description
return System

Replace() public method

public Replace ( string MatchText, MatchEvaluator me ) : string
MatchText string
me MatchEvaluator
return string