mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-24 17:55:01 +01:00
* ProtoBuf
* .
* x
* ---
* x
* fx
* ...
* sc
* ...
* .
* groen
* x
* fix tests
* ok!?
* fix tests
* fix tests
* !
* x
* 6
* .
* x
* ivaluematcher
* transformer
* .
* sc
* .
* mapping
* x
* tra
* com
* ...
* .
* .
* .
* AddProtoDefinition
* .
* set
* grpahj
* .
* .
* IdOrText
* ...
* async
* async2
* .
* t
* nuget
* <PackageReference Include="ProtoBufJsonConverter" Version="0.2.0-preview-04" />
* http version
* tests
* .WithHttpVersion("2")
* <PackageReference Include="ProtoBufJsonConverter" Version="0.2.0" />
* HttpVersionParser
102 lines
2.8 KiB
C#
102 lines
2.8 KiB
C#
using System.Collections.Generic;
|
|
using System;
|
|
|
|
namespace WireMock.Admin.Mappings;
|
|
|
|
/// <summary>
|
|
/// MatcherModel
|
|
/// </summary>
|
|
[FluentBuilder.AutoGenerateBuilder]
|
|
public class MatcherModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the name.
|
|
/// </summary>
|
|
public string Name { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the pattern. Can be a string (default) or an object.
|
|
/// </summary>
|
|
public object? Pattern { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the patterns. Can be array of strings (default) or an array of objects.
|
|
/// </summary>
|
|
public object[]? Patterns { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the pattern as a file.
|
|
/// </summary>
|
|
public string? PatternAsFile { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the ignore case.
|
|
/// </summary>
|
|
public bool? IgnoreCase { get; set; }
|
|
|
|
/// <summary>
|
|
/// Reject on match.
|
|
/// </summary>
|
|
public bool? RejectOnMatch { get; set; }
|
|
|
|
/// <summary>
|
|
/// The Operator to use when multiple patterns are defined. Optional.
|
|
/// - null = Same as "or".
|
|
/// - "or" = Only one pattern is required to match.
|
|
/// - "and" = All patterns should match.
|
|
/// - "average" = The average value from all patterns.
|
|
/// </summary>
|
|
public string? MatchOperator { get; set; }
|
|
|
|
#region JsonPartialMatcher and JsonPartialWildcardMatcher
|
|
/// <summary>
|
|
/// Support Regex.
|
|
/// </summary>
|
|
public bool? Regex { get; set; }
|
|
#endregion
|
|
|
|
#region MimePartMatcher
|
|
/// <summary>
|
|
/// ContentType Matcher (image/png; name=image.png)
|
|
/// </summary>
|
|
public MatcherModel? ContentTypeMatcher { get; set; }
|
|
|
|
/// <summary>
|
|
/// ContentDisposition Matcher (attachment; filename=image.png)
|
|
/// </summary>
|
|
public MatcherModel? ContentDispositionMatcher { get; set; }
|
|
|
|
/// <summary>
|
|
/// ContentTransferEncoding Matcher (base64)
|
|
/// </summary>
|
|
public MatcherModel? ContentTransferEncodingMatcher { get; set; }
|
|
#endregion
|
|
|
|
#region MimePartMatcher + ProtoBufMatcher
|
|
/// <summary>
|
|
/// Content Matcher
|
|
/// </summary>
|
|
public MatcherModel? ContentMatcher { get; set; }
|
|
#endregion
|
|
|
|
#region ProtoBufMatcher
|
|
/// <summary>
|
|
/// The full type of the protobuf (request/response) message object. Format is "{package-name}.{type-name}".
|
|
/// </summary>
|
|
public string? ProtoBufMessageType { get; set; }
|
|
#endregion
|
|
|
|
#region XPathMatcher
|
|
/// <summary>
|
|
/// Array of namespace prefix and uri. (optional)
|
|
/// </summary>
|
|
public XmlNamespace[]? XmlNamespaceMap { get; set; }
|
|
#endregion
|
|
|
|
#region GraphQLMatcher
|
|
/// <summary>
|
|
/// Mapping of custom GraphQL Scalar name to ClrType. (optional)
|
|
/// </summary>
|
|
public IDictionary<string, Type>? CustomScalars { get; set; }
|
|
#endregion
|
|
} |