mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-28 11:47:50 +02:00
35 lines
929 B
C#
35 lines
929 B
C#
namespace WireMock.Org.Abstractions
|
|
{
|
|
public class NearMisses
|
|
{
|
|
/// <summary>
|
|
/// The HTTP request method
|
|
/// </summary>
|
|
public string Method { get; set; }
|
|
|
|
/// <summary>
|
|
/// The path and query to match exactly against
|
|
/// </summary>
|
|
public string Url { get; set; }
|
|
|
|
/// <summary>
|
|
/// The full URL to match against
|
|
/// </summary>
|
|
public string AbsoluteUrl { get; set; }
|
|
|
|
/// <summary>
|
|
/// Header patterns to match against in the : { "": "" } form
|
|
/// </summary>
|
|
public object Headers { get; set; }
|
|
|
|
/// <summary>
|
|
/// Cookie patterns to match against in the : { "": "" } form
|
|
/// </summary>
|
|
public object Cookies { get; set; }
|
|
|
|
/// <summary>
|
|
/// Body string to match against
|
|
/// </summary>
|
|
public string Body { get; set; }
|
|
}
|
|
} |