mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-16 15:16:53 +01:00
27 lines
678 B
C#
27 lines
678 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
[module:
|
|
SuppressMessage("StyleCop.CSharp.DocumentationRules",
|
|
"SA1633:FileMustHaveHeader",
|
|
Justification = "Reviewed. Suppression is OK here, as unknown copyright and company.")]
|
|
|
|
namespace WireMock
|
|
{
|
|
/// <summary>
|
|
/// The SpecifyRequests interface.
|
|
/// </summary>
|
|
public interface ISpecifyRequests
|
|
{
|
|
/// <summary>
|
|
/// The is satisfied by.
|
|
/// </summary>
|
|
/// <param name="request">
|
|
/// The request.
|
|
/// </param>
|
|
/// <returns>
|
|
/// The <see cref="bool"/>.
|
|
/// </returns>
|
|
bool IsSatisfiedBy(Request request);
|
|
}
|
|
}
|