Summary

Class:WireMock.Admin.Mappings.RequestModel
Assembly:WireMock.Net
File(s):C:\Users\azureuser\Documents\Github\WireMock.Net\src\WireMock.Net\Admin\Mappings\RequestModel.cs
Covered lines:8
Uncovered lines:0
Coverable lines:8
Total lines:71
Line coverage:100%

File(s)

C:\Users\azureuser\Documents\Github\WireMock.Net\src\WireMock.Net\Admin\Mappings\RequestModel.cs

#LineLine coverage
 1using System.Collections.Generic;
 2
 3namespace WireMock.Admin.Mappings
 4{
 5    /// <summary>
 6    /// RequestModel
 7    /// </summary>
 8    public class RequestModel
 9    {
 10        /// <summary>
 11        /// Gets or sets the ClientIP. (Can be a string or a ClientIPModel)
 12        /// </summary>
 13        /// <value>
 14        /// The ClientIP.
 15        /// </value>
 1116        public object ClientIP { get; set; }
 17
 18        /// <summary>
 19        /// Gets or sets the Path. (Can be a string or a PathModel)
 20        /// </summary>
 21        /// <value>
 22        /// The Path.
 23        /// </value>
 2924        public object Path { get; set; }
 25
 26        /// <summary>
 27        /// Gets or sets the Url. (Can be a string or a UrlModel)
 28        /// </summary>
 29        /// <value>
 30        /// The URL.
 31        /// </value>
 1132        public object Url { get; set; }
 33
 34        /// <summary>
 35        /// The methods
 36        /// </summary>
 2637        public string[] Methods { get; set; }
 38
 39        /// <summary>
 40        /// Gets or sets the Headers.
 41        /// </summary>
 42        /// <value>
 43        /// The Headers.
 44        /// </value>
 1145        public IList<HeaderModel> Headers { get; set; }
 46
 47        /// <summary>
 48        /// Gets or sets the Cookies.
 49        /// </summary>
 50        /// <value>
 51        /// The Cookies.
 52        /// </value>
 1153        public IList<CookieModel> Cookies { get; set; }
 54
 55        /// <summary>
 56        /// Gets or sets the Params.
 57        /// </summary>
 58        /// <value>
 59        /// The Headers.
 60        /// </value>
 1161        public IList<ParamModel> Params { get; set; }
 62
 63        /// <summary>
 64        /// Gets or sets the body.
 65        /// </summary>
 66        /// <value>
 67        /// The body.
 68        /// </value>
 2169        public BodyModel Body { get; set; }
 70    }
 71}