Files
WireMock.Net-wiremock/src/WireMock.Net/Owin/IMappingMatcher.cs
Stef Heyenrath c484b48c35 Add PartialMatch to logging / logentries (#482)
* .

* FluentAssertions

* .

* .
2020-07-04 11:39:50 +02:00

7 lines
193 B
C#

namespace WireMock.Owin
{
internal interface IMappingMatcher
{
(MappingMatcherResult Match, MappingMatcherResult Partial) FindBestMatch(RequestMessage request);
}
}