mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-30 05:41:46 +02:00
15 lines
381 B
C#
15 lines
381 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; }
|
|
}
|
|
} |