ApplicationGatewayRewriteRuleCondition Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.Fluent.Models.ApplicationGatewayRewriteRuleCondition : string * string * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.Network.Fluent.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.
Setting this paramter to truth value with force the pattern to do a case in-sensitive comparison.
Setting this value as truth will force to check the negation of the condition given by the user.
Applies to
Azure SDK for .NET