mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-21 00:28:59 +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
20 lines
496 B
C#
20 lines
496 B
C#
namespace WireMock.Matchers;
|
|
|
|
/// <summary>
|
|
/// IObjectMatcher
|
|
/// </summary>
|
|
public interface IObjectMatcher : IMatcher
|
|
{
|
|
/// <summary>
|
|
/// Gets the value (can be a string or an object).
|
|
/// </summary>
|
|
/// <returns>Value</returns>
|
|
object Value { get; }
|
|
|
|
/// <summary>
|
|
/// Determines whether the specified input is match.
|
|
/// </summary>
|
|
/// <param name="input">The input.</param>
|
|
/// <returns>MatchResult</returns>
|
|
MatchResult IsMatch(object? input);
|
|
} |