Files
WireMock.Net-wiremock/src/WireMock.Net/Owin/HostUrlDetails.cs
Stef Heyenrath c0b18631a3 Add option to run the server on http & https (#818)
* HostingProtocol.HttpAndHttps

* .

* .

* .

* HostingScheme
2022-09-26 14:24:45 +02:00

17 lines
347 B
C#

namespace WireMock.Owin;
/// <summary>
/// https://en.wikipedia.org/wiki/Uniform_Resource_Identifier
/// </summary>
internal struct HostUrlDetails
{
public bool IsHttps { get; set; }
public string Url { get; set; }
public string Scheme { get; set; }
public string Host { get; set; }
public int Port { get; set; }
}