C# Class Spring.Core.RegularExpressionEventNameCriteria

Criteria that is satisfied if the Name property of an System.Reflection.EventInfo instance matches a supplied regular expression pattern.
Inheritance: RegularExpressionCriteria
Exibir arquivo 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?

RegularExpressionEventNameCriteria ( ) : System.Reflection

Creates a new instance of the RegularExpressionEventNameCriteria class.

RegularExpressionEventNameCriteria ( string eventNamePattern ) : System.Reflection

Creates a new instance of the RegularExpressionEventNameCriteria 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

RegularExpressionEventNameCriteria() public method

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

RegularExpressionEventNameCriteria() public method

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