mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-20 00:03:48 +01:00
Remove interface for all Settings (#736)
This commit is contained in:
@@ -1,17 +1,24 @@
|
||||
namespace WireMock.Settings
|
||||
namespace WireMock.Settings
|
||||
{
|
||||
/// <summary>
|
||||
/// HttpClientSettings
|
||||
/// </summary>
|
||||
public class HttpClientSettings : IHttpClientSettings
|
||||
public class HttpClientSettings
|
||||
{
|
||||
/// <inheritdoc cref="IHttpClientSettings.ClientX509Certificate2ThumbprintOrSubjectName"/>
|
||||
/// <summary>
|
||||
/// The clientCertificate thumbprint or subject name fragment to use.
|
||||
/// Example thumbprint : "D2DBF135A8D06ACCD0E1FAD9BFB28678DF7A9818". Example subject name: "www.google.com""
|
||||
/// </summary>
|
||||
public string ClientX509Certificate2ThumbprintOrSubjectName { get; set; }
|
||||
|
||||
/// <inheritdoc cref="IHttpClientSettings.WebProxySettings"/>
|
||||
public IWebProxySettings WebProxySettings { get; set; }
|
||||
/// <summary>
|
||||
/// Defines the WebProxySettings.
|
||||
/// </summary>
|
||||
public WebProxySettings WebProxySettings { get; set; }
|
||||
|
||||
/// <inheritdoc cref="IHttpClientSettings.AllowAutoRedirect"/>
|
||||
/// <summary>
|
||||
/// Proxy requests should follow redirection (30x).
|
||||
/// </summary>
|
||||
public bool? AllowAutoRedirect { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user