mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-20 00:03:48 +01:00
20 lines
673 B
C#
20 lines
673 B
C#
using JetBrains.Annotations;
|
|
|
|
namespace WireMock.Matchers.Request
|
|
{
|
|
/// <summary>
|
|
/// The RequestMatcher interface.
|
|
/// </summary>
|
|
public interface IRequestMatcher
|
|
{
|
|
/// <summary>
|
|
/// Determines whether the specified RequestMessage is match.
|
|
/// </summary>
|
|
/// <param name="requestMessage">The RequestMessage.</param>
|
|
/// <param name="requestMatchResult">The RequestMatchResult.</param>
|
|
/// <returns>
|
|
/// A value between 0.0 - 1.0 of the similarity.
|
|
/// </returns>
|
|
double IsMatch([NotNull] RequestMessage requestMessage, [NotNull] RequestMatchResult requestMatchResult);
|
|
}
|
|
} |