mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-31 14:13:02 +02:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
21 lines
416 B
C#
21 lines
416 B
C#
// Copyright © WireMock.Net
|
|
|
|
namespace WireMock.Owin;
|
|
|
|
/// <summary>
|
|
/// https://en.wikipedia.org/wiki/Uniform_Resource_Identifier
|
|
/// </summary>
|
|
internal struct HostUrlDetails
|
|
{
|
|
public bool IsHttps { get; set; }
|
|
|
|
public bool IsHttp2 { get; set; }
|
|
|
|
public string Url { get; set; }
|
|
|
|
public string Scheme { get; set; }
|
|
|
|
public string Host { get; set; }
|
|
|
|
public int Port { get; set; }
|
|
} |