HttpSettings Constructors

Definition

Overloads

HttpSettings()

Initializes a new instance of the HttpSettings class.

HttpSettings(Nullable<Boolean>, HttpSettingsRoutes, ForwardProxy)

Initializes a new instance of the HttpSettings class.

HttpSettings()

Initializes a new instance of the HttpSettings class.

public HttpSettings ();
Public Sub New ()

Applies to

HttpSettings(Nullable<Boolean>, HttpSettingsRoutes, ForwardProxy)

Initializes a new instance of the HttpSettings class.

public HttpSettings (bool? requireHttps = default, Microsoft.Azure.Management.WebSites.Models.HttpSettingsRoutes routes = default, Microsoft.Azure.Management.WebSites.Models.ForwardProxy forwardProxy = default);
new Microsoft.Azure.Management.WebSites.Models.HttpSettings : Nullable<bool> * Microsoft.Azure.Management.WebSites.Models.HttpSettingsRoutes * Microsoft.Azure.Management.WebSites.Models.ForwardProxy -> Microsoft.Azure.Management.WebSites.Models.HttpSettings
Public Sub New (Optional requireHttps As Nullable(Of Boolean) = Nothing, Optional routes As HttpSettingsRoutes = Nothing, Optional forwardProxy As ForwardProxy = Nothing)

Parameters

requireHttps
Nullable<Boolean>

<code>false</code> if the authentication/authorization responses not having the HTTPS scheme are permissible; otherwise, <code>true</code>.

routes
HttpSettingsRoutes

The configuration settings of the paths HTTP requests.

forwardProxy
ForwardProxy

The configuration settings of a forward proxy used to make the requests.

Applies to