using JetBrains.Annotations;
namespace WireMock.Matchers.Request
{
///
/// The RequestMatcher interface.
///
public interface IRequestMatcher
{
///
/// Determines whether the specified RequestMessage is match.
///
/// The RequestMessage.
///
/// true if the specified RequestMessage is match; otherwise, false.
///
bool IsMatch([NotNull] RequestMessage requestMessage);
}
}