mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-24 11:14:53 +01:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
// Copyright © WireMock.Net
|
|
|
|
using System;
|
|
using WireMock.Matchers.Request;
|
|
|
|
namespace WireMock.Logging;
|
|
|
|
/// <summary>
|
|
/// LogEntry
|
|
/// </summary>
|
|
public class LogEntry : ILogEntry
|
|
{
|
|
/// <inheritdoc cref="ILogEntry.Guid" />
|
|
public Guid Guid { get; set; }
|
|
|
|
/// <inheritdoc cref="ILogEntry.RequestMessage" />
|
|
public IRequestMessage RequestMessage { get; set; } = null!;
|
|
|
|
/// <inheritdoc cref="ILogEntry.ResponseMessage" />
|
|
public IResponseMessage ResponseMessage { get; set; } = null!;
|
|
|
|
/// <inheritdoc cref="ILogEntry.RequestMatchResult" />
|
|
public IRequestMatchResult RequestMatchResult { get; set; } = null!;
|
|
|
|
/// <inheritdoc cref="ILogEntry.MappingGuid" />
|
|
public Guid? MappingGuid { get; set; }
|
|
|
|
/// <inheritdoc cref="ILogEntry.MappingTitle" />
|
|
public string? MappingTitle { get; set; }
|
|
|
|
/// <inheritdoc cref="ILogEntry.PartialMappingGuid" />
|
|
public Guid? PartialMappingGuid { get; set; }
|
|
|
|
/// <inheritdoc cref="ILogEntry.PartialMappingTitle" />
|
|
public string? PartialMappingTitle { get; set; }
|
|
|
|
/// <inheritdoc cref="ILogEntry.PartialMatchResult" />
|
|
public IRequestMatchResult PartialMatchResult { get; set; } = null!;
|
|
} |