Update WireMock.Org.Abstractions and WireMock.Org.RestClient (#765)

* Update WireMock.Org.Abstractions and WireMock.Org.RestClient

* .

* rename
This commit is contained in:
Stef Heyenrath
2022-07-08 11:02:18 +02:00
committed by GitHub
parent 4d0f96eabe
commit b1032c9dcd
42 changed files with 862 additions and 6736 deletions

View File

@@ -0,0 +1,35 @@
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; }
}
}