mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-18 23:33:47 +01:00
15 lines
369 B
C#
15 lines
369 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 obejct).
|
|
/// </summary>
|
|
/// <returns>Value</returns>
|
|
object Value { get; }
|
|
}
|
|
} |