Files
WireMock.Net-wiremock/src/WireMock/Matchers/IMatcher.cs
Stef Heyenrath 72335d48d6 Add XmlPath2 / RegEx matchers
Solves issue #5
2017-01-19 21:51:22 +01:00

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);
}
}