mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-16 07:06:54 +01:00
21 lines
573 B
C#
21 lines
573 B
C#
namespace WireMock.Matchers
|
|
{
|
|
/// <summary>
|
|
/// IStringMatcher
|
|
/// </summary>
|
|
public interface IStringMatcher : IMatcher
|
|
{
|
|
/// <summary>
|
|
/// Determines whether the specified input is match.
|
|
/// </summary>
|
|
/// <param name="input">The input.</param>
|
|
/// <returns>A value between 0.0 - 1.0 of the similarity.</returns>
|
|
double IsMatch(string input);
|
|
|
|
/// <summary>
|
|
/// Gets the patterns.
|
|
/// </summary>
|
|
/// <returns>Patterns</returns>
|
|
string[] GetPatterns();
|
|
}
|
|
} |