Method | Description | |
---|---|---|
Add ( IStringMatcher matcher ) : void |
Adds new matcher to the list of contained matchers.
|
|
AddRange ( IStringMatcher matchers ) : void |
Adds multiple matchers to the set of contained matchers.
|
|
CombinedStringMatcher ( ) : System |
Default constructor.
|
|
CombinedStringMatcher ( IStringMatcher matchers ) : System |
Constructor which initializes list of contained string matchers.
|
|
IsMatch ( string value ) : bool |
Tests whether specified string can be matched using any of the contained matchers.
|
public Add ( IStringMatcher matcher ) : void | ||
matcher | IStringMatcher | New matcher to add to the list. |
return | void |
public AddRange ( IStringMatcher matchers ) : void | ||
matchers | IStringMatcher | Array of matchers that should be added. |
return | void |
public CombinedStringMatcher ( IStringMatcher matchers ) : System | ||
matchers | IStringMatcher | Array of matchers that should be added to this matcher. |
return | System |
public IsMatch ( string value ) : bool | ||
value | string | String which is tested against contained matchers. |
return | bool |