mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-13 05:35:15 +01:00
* wip * . * mm * x * . * . * . * tests * . * more tests * trans * x * win * fix * . * tests
17 lines
297 B
C#
17 lines
297 B
C#
namespace WireMock.Matchers;
|
|
|
|
/// <summary>
|
|
/// MatchBehaviour (Accept or Reject)
|
|
/// </summary>
|
|
public enum MatchBehaviour
|
|
{
|
|
/// <summary>
|
|
/// Accept on match (default)
|
|
/// </summary>
|
|
AcceptOnMatch,
|
|
|
|
/// <summary>
|
|
/// Reject on match
|
|
/// </summary>
|
|
RejectOnMatch
|
|
} |