다음을 통해 공유


ForwardProxy Constructors

Definition

Overloads

ForwardProxy()

Initializes a new instance of the ForwardProxy class.

ForwardProxy(Nullable<ForwardProxyConvention>, String, String)

Initializes a new instance of the ForwardProxy class.

ForwardProxy()

Initializes a new instance of the ForwardProxy class.

public ForwardProxy ();
Public Sub New ()

Applies to

ForwardProxy(Nullable<ForwardProxyConvention>, String, String)

Initializes a new instance of the ForwardProxy class.

public ForwardProxy (Microsoft.Azure.Management.WebSites.Models.ForwardProxyConvention? convention = default, string customHostHeaderName = default, string customProtoHeaderName = default);
new Microsoft.Azure.Management.WebSites.Models.ForwardProxy : Nullable<Microsoft.Azure.Management.WebSites.Models.ForwardProxyConvention> * string * string -> Microsoft.Azure.Management.WebSites.Models.ForwardProxy
Public Sub New (Optional convention As Nullable(Of ForwardProxyConvention) = Nothing, Optional customHostHeaderName As String = Nothing, Optional customProtoHeaderName As String = Nothing)

Parameters

convention
Nullable<ForwardProxyConvention>

The convention used to determine the url of the request made. Possible values include: 'NoProxy', 'Standard', 'Custom'

customHostHeaderName
String

The name of the header containing the host of the request.

customProtoHeaderName
String

The name of the header containing the scheme of the request.

Applies to