Summary

Class:WireMock.Admin.Requests.LogRequestModel
Assembly:WireMock.Net
File(s):C:\Users\azureuser\Documents\Github\WireMock.Net\src\WireMock.Net\Admin\Requests\LogRequestModel.cs
Covered lines:12
Uncovered lines:0
Coverable lines:12
Total lines:73
Line coverage:100%

File(s)

C:\Users\azureuser\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        /// The Client IP Address.
 15        /// </summary>
 616        public string ClientIP { get; set; }
 17
 18        /// <summary>
 19        /// The DateTime.
 20        /// </summary>
 621        public DateTime DateTime { get; set; }
 22
 23        /// <summary>
 24        /// The Path.
 25        /// </summary>
 826        public string Path { get; set; }
 27
 28        /// <summary>
 29        ///The absolete URL.
 30        /// </summary>
 631        public string AbsoluteUrl { get; set; }
 32
 33        /// <summary>
 34        /// The query.
 35        /// </summary>
 436        public IDictionary<string, WireMockList<string>> Query { get; set; }
 37
 38        /// <summary>
 39        /// The method.
 40        /// </summary>
 841        public string Method { get; set; }
 42
 43        /// <summary>
 44        /// The Headers.
 45        /// </summary>
 846        public IDictionary<string, WireMockList<string>> Headers { get; set; }
 47
 48        /// <summary>
 49        /// Tthe Cookies.
 50        /// </summary>
 451        public IDictionary<string, string> Cookies { get; set; }
 52
 53        /// <summary>
 54        /// The body (as string).
 55        /// </summary>
 656        public string Body { get; set; }
 57
 58        /// <summary>
 59        /// The body (as JSON object).
 60        /// </summary>
 461        public object BodyAsJson { get; set; }
 62
 63        /// <summary>
 64        /// The body (as bytearray).
 65        /// </summary>
 466        public byte[] BodyAsBytes { get; set; }
 67
 68        /// <summary>
 69        /// The body encoding.
 70        /// </summary>
 471        public EncodingModel BodyEncoding { get; set; }
 72    }
 73}