| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using WireMock.Admin.Mappings; |
| | | 4 | | using WireMock.Util; |
| | | 5 | | |
| | | 6 | | namespace WireMock.Admin.Requests |
| | | 7 | | { |
| | | 8 | | /// <summary> |
| | | 9 | | /// RequestMessage Model |
| | | 10 | | /// </summary> |
| | | 11 | | public class LogRequestModel |
| | | 12 | | { |
| | | 13 | | /// <summary> |
| | | 14 | | /// Gets the DateTime. |
| | | 15 | | /// </summary> |
| | 0 | 16 | | public DateTime DateTime { get; set; } |
| | | 17 | | |
| | | 18 | | /// <summary> |
| | | 19 | | /// Gets or sets the Path. |
| | | 20 | | /// </summary> |
| | | 21 | | /// <value> |
| | | 22 | | /// The Path. |
| | | 23 | | /// </value> |
| | 0 | 24 | | 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> |
| | 0 | 32 | | public string AbsoluteUrl { get; set; } |
| | | 33 | | |
| | | 34 | | /// <summary> |
| | | 35 | | /// Gets the query. |
| | | 36 | | /// </summary> |
| | 0 | 37 | | 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> |
| | 0 | 45 | | public string Method { get; set; } |
| | | 46 | | |
| | | 47 | | /// <summary> |
| | | 48 | | /// Gets or sets the Headers. |
| | | 49 | | /// </summary> |
| | | 50 | | /// <value> |
| | | 51 | | /// The Headers. |
| | | 52 | | /// </value> |
| | 0 | 53 | | 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> |
| | 0 | 61 | | 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> |
| | 0 | 69 | | 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> |
| | 0 | 77 | | public EncodingModel BodyEncoding { get; set; } |
| | | 78 | | } |
| | | 79 | | } |