mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-24 09:45:01 +01:00
15 lines
424 B
C#
15 lines
424 B
C#
namespace WireMock.Matchers
|
|
{
|
|
/// <summary>
|
|
/// IObjectMatcher
|
|
/// </summary>
|
|
public interface IObjectMatcher : 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(object input);
|
|
}
|
|
} |