mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-29 13:21:50 +02:00
19 lines
581 B
C#
19 lines
581 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>
|
|
/// <returns>
|
|
/// <c>true</c> if the specified RequestMessage is match; otherwise, <c>false</c>.
|
|
/// </returns>
|
|
bool IsMatch([NotNull] RequestMessage requestMessage);
|
|
}
|
|
} |