mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-20 16:23:42 +01:00
* RejectOnMatch (wip) * RejectOnMatch (wip) * RejectOnMatch (wip) * RejectOnMatch (wip) * docs: improve sample app matcher to show use of reject on match * Reworked code review comments
14 lines
323 B
C#
14 lines
323 B
C#
namespace WireMock.Matchers
|
|
{
|
|
/// <summary>
|
|
/// IIgnoreCaseMatcher
|
|
/// </summary>
|
|
/// <inheritdoc cref="IMatcher"/>
|
|
public interface IIgnoreCaseMatcher : IMatcher
|
|
{
|
|
/// <summary>
|
|
/// Ignore the case from the pattern.
|
|
/// </summary>
|
|
bool IgnoreCase { get; }
|
|
}
|
|
} |