mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-18 08:17:43 +01:00
* More nullable annotations * . * . * FIX * pact * . * p * xxx * ... * auth * array * ...
14 lines
372 B
C#
14 lines
372 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);
|
|
} |