ApplicationFirewallSettings Constructors

Definition

Overloads

Name Description
ApplicationFirewallSettings()

Initializes a new instance of the ApplicationFirewallSettings class.

ApplicationFirewallSettings(IList<ClientConnectionCountRule>, IList<ClientTrafficControlRule>, Nullable<Int64>)

Initializes a new instance of the ApplicationFirewallSettings class.

ApplicationFirewallSettings()

Initializes a new instance of the ApplicationFirewallSettings class.

public ApplicationFirewallSettings();
Public Sub New ()

Applies to

ApplicationFirewallSettings(IList<ClientConnectionCountRule>, IList<ClientTrafficControlRule>, Nullable<Int64>)

Initializes a new instance of the ApplicationFirewallSettings class.

public ApplicationFirewallSettings(System.Collections.Generic.IList<Microsoft.Azure.Management.SignalR.Models.ClientConnectionCountRule> clientConnectionCountRules = default, System.Collections.Generic.IList<Microsoft.Azure.Management.SignalR.Models.ClientTrafficControlRule> clientTrafficControlRules = default, long? maxClientConnectionLifetimeInSeconds = default);
new Microsoft.Azure.Management.SignalR.Models.ApplicationFirewallSettings : System.Collections.Generic.IList<Microsoft.Azure.Management.SignalR.Models.ClientConnectionCountRule> * System.Collections.Generic.IList<Microsoft.Azure.Management.SignalR.Models.ClientTrafficControlRule> * Nullable<int64> -> Microsoft.Azure.Management.SignalR.Models.ApplicationFirewallSettings
Public Sub New (Optional clientConnectionCountRules As IList(Of ClientConnectionCountRule) = Nothing, Optional clientTrafficControlRules As IList(Of ClientTrafficControlRule) = Nothing, Optional maxClientConnectionLifetimeInSeconds As Nullable(Of Long) = Nothing)

Parameters

clientConnectionCountRules
IList<ClientConnectionCountRule>

Rules to control the client connection count

clientTrafficControlRules
IList<ClientTrafficControlRule>

Rules to control the client traffic

maxClientConnectionLifetimeInSeconds
Nullable<Int64>

Config to control the client connection lifetime in seconds, can be set to 0 to disable the config

Applies to