Add Port and Url property to WireMockServer (#740)

This commit is contained in:
Stef Heyenrath
2022-03-26 11:03:37 +01:00
committed by GitHub
parent 0789b97883
commit cbf82836f5
10 changed files with 31 additions and 13 deletions

View File

@@ -38,11 +38,21 @@ namespace WireMock.Server
/// </summary>
List<int> Ports { get; }
/// <summary>
/// Gets the first port.
/// </summary>
int Port { get; }
/// <summary>
/// Gets the urls.
/// </summary>
string[] Urls { get; }
/// <summary>
/// Gets the first url.
/// </summary>
string Url { get; }
//ConcurrentDictionary<string, ScenarioState> Scenarios { get; }
/// <summary>