C# Class Stumps.TextMatch

A class that provides text matching for various rules.
Mostra file Open project: Cayan-LLC/stumps

Public Methods

Method Description
IsMatch ( string value ) : bool

Determines whether the specified value matches the text.

TextMatch ( string value, bool ignoreCase ) : System

Initializes a new instance of the T:Stumps.TextMatch class.

Method Details

IsMatch() public method

Determines whether the specified value matches the text.
public IsMatch ( string value ) : bool
value string The value to evaluate.
return bool

TextMatch() public method

Initializes a new instance of the T:Stumps.TextMatch class.
public TextMatch ( string value, bool ignoreCase ) : System
value string The value used to match.
ignoreCase bool If set to true, capitalization is ignored.
return System