C# Class Stumps.TextContainsMatch

A class that determins if a block of text contains a specified value.
Inheritance: TextMatch
Exibir arquivo Open project: Cayan-LLC/stumps

Public Methods

Method Description
IsMatch ( string value ) : bool

Determines whether the specified value matches the text.

TextContainsMatch ( string value, bool ignoreCase )

Initializes a new instance of the T:Stumps.TextContainsMatch 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

TextContainsMatch() public method

Initializes a new instance of the T:Stumps.TextContainsMatch class.
public TextContainsMatch ( string value, bool ignoreCase )
value string The value to find.
ignoreCase bool If set to true, capitalization is ignored.