| | | 1 | | namespace WireMock.Server |
| | | 2 | | { |
| | | 3 | | /// <summary> |
| | | 4 | | /// FluentMockServerSettings |
| | | 5 | | /// </summary> |
| | | 6 | | public class FluentMockServerSettings |
| | | 7 | | { |
| | | 8 | | /// <summary> |
| | | 9 | | /// Gets or sets the port. |
| | | 10 | | /// </summary> |
| | | 11 | | /// <value> |
| | | 12 | | /// The port. |
| | | 13 | | /// </value> |
| | 32 | 14 | | public int? Port { get; set; } |
| | | 15 | | |
| | | 16 | | /// <summary> |
| | | 17 | | /// Gets or sets the use SSL. |
| | | 18 | | /// </summary> |
| | | 19 | | /// <value> |
| | | 20 | | /// The use SSL. |
| | | 21 | | /// </value> |
| | | 22 | | // ReSharper disable once InconsistentNaming |
| | 32 | 23 | | public bool? UseSSL { get; set; } |
| | | 24 | | |
| | | 25 | | /// <summary> |
| | | 26 | | /// Gets or sets the start admin interface. |
| | | 27 | | /// </summary> |
| | | 28 | | /// <value> |
| | | 29 | | /// The start admin interface. |
| | | 30 | | /// </value> |
| | 18 | 31 | | public bool? StartAdminInterface { get; set; } |
| | | 32 | | |
| | | 33 | | /// <summary> |
| | | 34 | | /// Gets or sets the read static mappings. |
| | | 35 | | /// </summary> |
| | | 36 | | /// <value> |
| | | 37 | | /// The read static mappings. |
| | | 38 | | /// </value> |
| | 18 | 39 | | public bool? ReadStaticMappings { get; set; } |
| | | 40 | | |
| | | 41 | | /// <summary> |
| | | 42 | | /// Gets or sets the urls. |
| | | 43 | | /// </summary> |
| | | 44 | | /// <value> |
| | | 45 | | /// The urls. |
| | | 46 | | /// </value> |
| | 22 | 47 | | public string[] Urls { get; set; } |
| | | 48 | | |
| | | 49 | | /// <summary> |
| | | 50 | | /// StartTimeout |
| | | 51 | | /// </summary> |
| | 18 | 52 | | public int StartTimeout { get; set; } = 10000; |
| | | 53 | | } |
| | | 54 | | } |