mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-17 15:46:46 +01:00
* Create WireMock.Net.MimePart project * . * REFACTOR * ILRepack * -- * ... * x * x * . * fix * public class MimePartMatcher * shared * min * . * <!--<DelaySign>true</DelaySign>--> * Update README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
24 lines
452 B
C#
24 lines
452 B
C#
// Copyright © WireMock.Net
|
|
|
|
namespace WireMock.Matchers;
|
|
|
|
/// <summary>
|
|
/// The Operator to use when multiple patterns are defined.
|
|
/// </summary>
|
|
public enum MatchOperator
|
|
{
|
|
/// <summary>
|
|
/// Only one pattern needs to match. [Default]
|
|
/// </summary>
|
|
Or,
|
|
|
|
/// <summary>
|
|
/// All patterns should match.
|
|
/// </summary>
|
|
And,
|
|
|
|
/// <summary>
|
|
/// The average value from all patterns.
|
|
/// </summary>
|
|
Average
|
|
} |