mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-23 09:52:05 +01:00
* wip * ... * . * ... * ... * path * url * b * t * client * . * RequestMessageMethodMatcherTests * . * h * . * fix tests * .
20 lines
661 B
C#
20 lines
661 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 GetMatchingScore(IRequestMessage requestMessage, IRequestMatchResult requestMatchResult);
|
|
}
|
|
} |