using System.Diagnostics.CodeAnalysis; [module: SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1633:FileMustHaveHeader", Justification = "Reviewed. Suppression is OK here, as unknown copyright and company.")] namespace WireMock { /// /// The SpecifyRequests interface. /// public interface ISpecifyRequests { /// /// The is satisfied by. /// /// /// The request. /// /// /// The . /// bool IsSatisfiedBy(Request request); } }