mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-18 09:27:08 +01:00
17 lines
609 B
C#
17 lines
609 B
C#
namespace WireMock.Settings
|
|
{
|
|
/// <summary>
|
|
/// HttpClientSettings
|
|
/// </summary>
|
|
public class HttpClientSettings : IHttpClientSettings
|
|
{
|
|
/// <inheritdoc cref="IHttpClientSettings.ClientX509Certificate2ThumbprintOrSubjectName"/>
|
|
public string ClientX509Certificate2ThumbprintOrSubjectName { get; set; }
|
|
|
|
/// <inheritdoc cref="IHttpClientSettings.WebProxySettings"/>
|
|
public IWebProxySettings WebProxySettings { get; set; }
|
|
|
|
/// <inheritdoc cref="IHttpClientSettings.AllowAutoRedirect"/>
|
|
public bool? AllowAutoRedirect { get; set; }
|
|
}
|
|
} |