namespace WireMock.Matchers
{
///
/// IStringMatcher
///
///
public interface IStringMatcher : IMatcher
{
///
/// Determines whether the specified input is match.
///
/// The input.
/// A value between 0.0 - 1.0 of the similarity.
double IsMatch(string input);
///
/// Gets the patterns.
///
/// Patterns
string[] GetPatterns();
}
}