Share via


ApplicationGatewayRewriteRuleCondition Constructors

Definition

Overloads

ApplicationGatewayRewriteRuleCondition()

Initializes a new instance of the ApplicationGatewayRewriteRuleCondition class.

ApplicationGatewayRewriteRuleCondition(String, String, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the ApplicationGatewayRewriteRuleCondition class.

ApplicationGatewayRewriteRuleCondition()

Initializes a new instance of the ApplicationGatewayRewriteRuleCondition class.

public ApplicationGatewayRewriteRuleCondition ();
Public Sub New ()

Applies to

ApplicationGatewayRewriteRuleCondition(String, String, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the ApplicationGatewayRewriteRuleCondition class.

public ApplicationGatewayRewriteRuleCondition (string variable = default, string pattern = default, bool? ignoreCase = default, bool? negate = default);
new Microsoft.Azure.Management.Network.Models.ApplicationGatewayRewriteRuleCondition : string * string * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.Network.Models.ApplicationGatewayRewriteRuleCondition
Public Sub New (Optional variable As String = Nothing, Optional pattern As String = Nothing, Optional ignoreCase As Nullable(Of Boolean) = Nothing, Optional negate As Nullable(Of Boolean) = Nothing)

Parameters

variable
String

The condition parameter of the RewriteRuleCondition.

pattern
String

The pattern, either fixed string or regular expression, that evaluates the truthfulness of the condition.

ignoreCase
Nullable<Boolean>

Setting this parameter to truth value with force the pattern to do a case in-sensitive comparison.

negate
Nullable<Boolean>

Setting this value as truth will force to check the negation of the condition given by the user.

Applies to