mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-28 03:51:05 +01:00
* More nullable annotations * . * . * FIX * pact * . * p * xxx * ... * auth * array * ...
13 lines
274 B
C#
13 lines
274 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; }
|
|
} |