namespace WireMock.Settings { /// /// IHttpClientSettings /// public interface IHttpClientSettings { /// /// The clientCertificate thumbprint or subject name fragment to use. /// Example thumbprint : "D2DBF135A8D06ACCD0E1FAD9BFB28678DF7A9818". Example subject name: "www.google.com"" /// string ClientX509Certificate2ThumbprintOrSubjectName { get; set; } /// /// Defines the WebProxySettings. /// IWebProxySettings WebProxySettings { get; set; } /// /// Proxy requests should follow redirection (30x). /// bool? AllowAutoRedirect { get; set; } } }