mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-28 20:01:46 +01:00
17 lines
452 B
C#
17 lines
452 B
C#
namespace WireMock.Matchers
|
|
{
|
|
/// <summary>
|
|
/// IMatcher
|
|
/// </summary>
|
|
public interface IMatcher
|
|
{
|
|
/// <summary>
|
|
/// Determines whether the specified input is match.
|
|
/// </summary>
|
|
/// <param name="input">The input.</param>
|
|
/// <returns>
|
|
/// <c>true</c> if the specified input is match; otherwise, <c>false</c>.
|
|
/// </returns>
|
|
bool IsMatch(string input);
|
|
}
|
|
} |