mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-23 09:30:59 +01:00
* Update BodyParser logic * update logic for byte[] * small update * MyGetKey * myget * dotnet nuget push * dotnet build * Release * . * StringContent * 1.0.4.18-preview-02 * Debug * 1.0.4.18-preview-02 * disable some proxy tests * myget * packagesToPack * fix * <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType> * Release * <VersionPrefix>1.0.4.18</VersionPrefix> * fix * BodyParserTests * ResponseBodyData (#216) * ResponseBodyData * refactor tests * LogEntryMapperTests
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 object).
|
|
/// </summary>
|
|
/// <returns>Value</returns>
|
|
object Value { get; }
|
|
}
|
|
} |