Files
WireMock.Net-wiremock/src/WireMock.Net/Owin/IMappingMatcher.cs
Stef Heyenrath 94f179ba17 Fix MappingMatcher in case of an exception in LinqMatcher. (#322)
* Fix MappingMatcher in case of an exception in LinqMatcher.

* update unit-tests
2019-08-17 16:24:14 +00:00

7 lines
149 B
C#

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