CustomRule 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
CustomRule() |
Initializes a new instance of the CustomRule class. |
CustomRule(String, Int32, IList<MatchCondition>, String, String) |
Initializes a new instance of the CustomRule class. |
CustomRule()
Initializes a new instance of the CustomRule class.
public CustomRule ();
Public Sub New ()
Applies to
CustomRule(String, Int32, IList<MatchCondition>, String, String)
Initializes a new instance of the CustomRule class.
public CustomRule (string name, int priority, System.Collections.Generic.IList<Microsoft.Azure.Management.Cdn.Models.MatchCondition> matchConditions, string action, string enabledState = default);
new Microsoft.Azure.Management.Cdn.Models.CustomRule : string * int * System.Collections.Generic.IList<Microsoft.Azure.Management.Cdn.Models.MatchCondition> * string * string -> Microsoft.Azure.Management.Cdn.Models.CustomRule
Public Sub New (name As String, priority As Integer, matchConditions As IList(Of MatchCondition), action As String, Optional enabledState As String = Nothing)
Parameters
- name
- String
Defines the name of the custom rule
- priority
- Int32
Defines in what order this rule be evaluated in the overall list of custom rules
- matchConditions
- IList<MatchCondition>
List of match conditions.
- action
- String
Describes what action to be applied when rule matches. Possible values include: 'Allow', 'Block', 'Log', 'Redirect'
- enabledState
- String
Describes if the custom rule is in enabled or disabled state. Defaults to Enabled if not specified. Possible values include: 'Disabled', 'Enabled'