Share via


ExplicitProxy Constructors

Definition

Overloads

ExplicitProxy()

Initializes a new instance of the ExplicitProxy class.

ExplicitProxy(Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<Boolean>, Nullable<Int32>, String)

Initializes a new instance of the ExplicitProxy class.

ExplicitProxy()

Initializes a new instance of the ExplicitProxy class.

public ExplicitProxy ();
Public Sub New ()

Applies to

ExplicitProxy(Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<Boolean>, Nullable<Int32>, String)

Initializes a new instance of the ExplicitProxy class.

public ExplicitProxy (bool? enableExplicitProxy = default, int? httpPort = default, int? httpsPort = default, bool? enablePacFile = default, int? pacFilePort = default, string pacFile = default);
new Microsoft.Azure.Management.Network.Models.ExplicitProxy : Nullable<bool> * Nullable<int> * Nullable<int> * Nullable<bool> * Nullable<int> * string -> Microsoft.Azure.Management.Network.Models.ExplicitProxy
Public Sub New (Optional enableExplicitProxy As Nullable(Of Boolean) = Nothing, Optional httpPort As Nullable(Of Integer) = Nothing, Optional httpsPort As Nullable(Of Integer) = Nothing, Optional enablePacFile As Nullable(Of Boolean) = Nothing, Optional pacFilePort As Nullable(Of Integer) = Nothing, Optional pacFile As String = Nothing)

Parameters

enableExplicitProxy
Nullable<Boolean>

When set to true, explicit proxy mode is enabled.

httpPort
Nullable<Int32>

Port number for explicit proxy http protocol, cannot be greater than 64000.

httpsPort
Nullable<Int32>

Port number for explicit proxy https protocol, cannot be greater than 64000.

enablePacFile
Nullable<Boolean>

When set to true, pac file port and url needs to be provided.

pacFilePort
Nullable<Int32>

Port number for firewall to serve PAC file.

pacFile
String

SAS URL for PAC file.

Applies to