mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-25 18:41:01 +01:00
* More nullable annotations * . * . * FIX * pact * . * p * xxx * ... * auth * array * ...
14 lines
330 B
C#
14 lines
330 B
C#
namespace WireMock.Matchers;
|
|
|
|
/// <summary>
|
|
/// IValueMatcher
|
|
/// </summary>
|
|
/// <seealso cref="IObjectMatcher" />
|
|
public interface IValueMatcher : IObjectMatcher
|
|
{
|
|
/// <summary>
|
|
/// Gets the value (can be a string or an object).
|
|
/// </summary>
|
|
/// <returns>Value</returns>
|
|
object Value { get; }
|
|
} |