mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-21 16:48:59 +01:00
24 lines
764 B
C#
24 lines
764 B
C#
namespace WireMock.Settings
|
|
{
|
|
/// <summary>
|
|
/// IHttpClientSettings
|
|
/// </summary>
|
|
public interface IHttpClientSettings
|
|
{
|
|
/// <summary>
|
|
/// The clientCertificate thumbprint or subject name fragment to use.
|
|
/// Example thumbprint : "D2DBF135A8D06ACCD0E1FAD9BFB28678DF7A9818". Example subject name: "www.google.com""
|
|
/// </summary>
|
|
string ClientX509Certificate2ThumbprintOrSubjectName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Defines the WebProxySettings.
|
|
/// </summary>
|
|
IWebProxySettings WebProxySettings { get; set; }
|
|
|
|
/// <summary>
|
|
/// Proxy requests should follow redirection (30x).
|
|
/// </summary>
|
|
bool? AllowAutoRedirect { get; set; }
|
|
}
|
|
} |