Summary

Class:WireMock.Admin.Requests.LogRequestModel
Assembly:WireMock.Net
File(s):C:\Users\Stef\Documents\GitHub\WireMock.Net\src\WireMock.Net\Admin\Requests\LogRequestModel.cs
Covered lines:0
Uncovered lines:9
Coverable lines:9
Total lines:79
Line coverage:0%

File(s)

C:\Users\Stef\Documents\GitHub\WireMock.Net\src\WireMock.Net\Admin\Requests\LogRequestModel.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using WireMock.Admin.Mappings;
 4using WireMock.Util;
 5
 6namespace WireMock.Admin.Requests
 7{
 8    /// <summary>
 9    /// RequestMessage Model
 10    /// </summary>
 11    public class LogRequestModel
 12    {
 13        /// <summary>
 14        /// Gets the DateTime.
 15        /// </summary>
 016        public DateTime DateTime { get; set; }
 17
 18        /// <summary>
 19        /// Gets or sets the Path.
 20        /// </summary>
 21        /// <value>
 22        /// The Path.
 23        /// </value>
 024        public string Path { get; set; }
 25
 26        /// <summary>
 27        /// Gets or sets the absolete URL.
 28        /// </summary>
 29        /// <value>
 30        /// The absolute URL.
 31        /// </value>
 032        public string AbsoluteUrl { get; set; }
 33
 34        /// <summary>
 35        /// Gets the query.
 36        /// </summary>
 037        public IDictionary<string, WireMockList<string>> Query { get; set; }
 38
 39        /// <summary>
 40        /// Gets or sets the method.
 41        /// </summary>
 42        /// <value>
 43        /// The method.
 44        /// </value>
 045        public string Method { get; set; }
 46
 47        /// <summary>
 48        /// Gets or sets the Headers.
 49        /// </summary>
 50        /// <value>
 51        /// The Headers.
 52        /// </value>
 053        public IDictionary<string, string> Headers { get; set; }
 54
 55        /// <summary>
 56        /// Gets or sets the Cookies.
 57        /// </summary>
 58        /// <value>
 59        /// The Cookies.
 60        /// </value>
 061        public IDictionary<string, string> Cookies { get; set; }
 62
 63        /// <summary>
 64        /// Gets or sets the body.
 65        /// </summary>
 66        /// <value>
 67        /// The body.
 68        /// </value>
 069        public string Body { get; set; }
 70
 71        /// <summary>
 72        /// Gets or sets the body encoding.
 73        /// </summary>
 74        /// <value>
 75        /// The body encoding.
 76        /// </value>
 077        public EncodingModel BodyEncoding { get; set; }
 78    }
 79}