Show / Hide Table of Contents

Class HttpPipelineTransportOptions

Enables configuration of options for the HttpClientTransport

Inheritance
System.Object
HttpPipelineTransportOptions
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Core.dll
Syntax
public class HttpPipelineTransportOptions

Constructors

HttpPipelineTransportOptions()

Initializes an instance of HttpPipelineTransportOptions.

Declaration
public HttpPipelineTransportOptions ();

Properties

ClientCertificates

The client certificate collection that will be configured for the transport.

Declaration
public System.Collections.Generic.IList<System.Security.Cryptography.X509Certificates.X509Certificate2> ClientCertificates { get; }
Property Value
System.Collections.Generic.IList<System.Security.Cryptography.X509Certificates.X509Certificate2>

IsClientRedirectEnabled

Gets or sets a value that indicates whether the redirect policy should follow redirection responses.

Declaration
public bool IsClientRedirectEnabled { get; set; }
Property Value
System.Boolean

true if the redirect policy should follow redirection responses; otherwise false. The default value is false.

ServerCertificateCustomValidationCallback

A delegate that validates the certificate presented by the server.

Declaration
public Func<Azure.Core.Pipeline.ServerCertificateCustomValidationArgs,bool> ServerCertificateCustomValidationCallback { get; set; }
Property Value
System.Func<ServerCertificateCustomValidationArgs,System.Boolean>

Back to top Azure SDK for .NET