mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-19 23:41:41 +02:00
LogEntryModel (Url -> Path)
This commit is contained in:
@@ -15,12 +15,12 @@ namespace WireMock.Admin.Requests
|
|||||||
public DateTime DateTime { get; set; }
|
public DateTime DateTime { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the URL.
|
/// Gets or sets the Path.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>
|
/// <value>
|
||||||
/// The URL.
|
/// The Path.
|
||||||
/// </value>
|
/// </value>
|
||||||
public string Url { get; set; }
|
public string Path { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the absolete URL.
|
/// Gets or sets the absolete URL.
|
||||||
|
|||||||
@@ -189,7 +189,7 @@ namespace WireMock.Server
|
|||||||
Request = new LogRequestModel
|
Request = new LogRequestModel
|
||||||
{
|
{
|
||||||
DateTime = logEntry.RequestMessage.DateTime,
|
DateTime = logEntry.RequestMessage.DateTime,
|
||||||
Url = logEntry.RequestMessage.Path,
|
Path = logEntry.RequestMessage.Path,
|
||||||
AbsoleteUrl = logEntry.RequestMessage.Url,
|
AbsoleteUrl = logEntry.RequestMessage.Url,
|
||||||
Query = logEntry.RequestMessage.Query,
|
Query = logEntry.RequestMessage.Query,
|
||||||
Method = logEntry.RequestMessage.Method,
|
Method = logEntry.RequestMessage.Method,
|
||||||
|
|||||||
Reference in New Issue
Block a user