C# Class Spring.Core.RegularExpressionMethodNameCriteria

Criteria that is satisfied if the Name property of an System.Reflection.MethodInfo instance matches a supplied regular expression pattern.
Inheritance: RegularExpressionCriteria
Show file Open project: spring-projects/spring-net Class Usage Examples

Public Methods

Method Description
IsSatisfied ( object datum ) : bool

Does the supplied datum satisfy the criteria encapsulated by this instance?

RegularExpressionMethodNameCriteria ( ) : System.Reflection

Creates a new instance of the RegularExpressionMethodNameCriteria class.

RegularExpressionMethodNameCriteria ( string methodNamePattern ) : System.Reflection

Creates a new instance of the RegularExpressionMethodNameCriteria class.

Method Details

IsSatisfied() public method

Does the supplied datum satisfy the criteria encapsulated by this instance?
public IsSatisfied ( object datum ) : bool
datum object The datum to be checked by this criteria instance.
return bool

RegularExpressionMethodNameCriteria() public method

Creates a new instance of the RegularExpressionMethodNameCriteria class.
public RegularExpressionMethodNameCriteria ( ) : System.Reflection
return System.Reflection

RegularExpressionMethodNameCriteria() public method

Creates a new instance of the RegularExpressionMethodNameCriteria class.
public RegularExpressionMethodNameCriteria ( string methodNamePattern ) : System.Reflection
methodNamePattern string /// The pattern that names /// must match against in order to satisfy this criteria. ///
return System.Reflection