C# Class Spring.Context.Attributes.TypeFilters.RegexPatternTypeFilter

A simple filter for matching a fully-qualified class name with a regex
Inheritance: ITypeFilter
Mostra file Open project: spring-projects/spring-net-codeconfig

Public Methods

Method Description
Match ( Type type ) : bool

Determine a match based on the given type object.

RegexPatternTypeFilter ( string pattern ) : System

Creates a type filter with provided pattern

Method Details

Match() public method

Determine a match based on the given type object.
public Match ( Type type ) : bool
type System.Type Type to compare against
return bool

RegexPatternTypeFilter() public method

Creates a type filter with provided pattern
public RegexPatternTypeFilter ( string pattern ) : System
pattern string Regex pattern
return System