mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-19 07:43:48 +01:00
15 lines
335 B
C#
15 lines
335 B
C#
namespace WireMock.Matchers
|
|
{
|
|
/// <summary>
|
|
/// IValueMatcher
|
|
/// </summary>
|
|
/// <seealso cref="IObjectMatcher" />
|
|
public interface IValueMatcher: IObjectMatcher
|
|
{
|
|
/// <summary>
|
|
/// Gets the value.
|
|
/// </summary>
|
|
/// <returns>Value</returns>
|
|
string GetValue();
|
|
}
|
|
} |