RateLimitRule Constructor
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.
Initializes a new instance of RateLimitRule.
public RateLimitRule (string name, int priority, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Cdn.Models.CustomRuleMatchCondition> matchConditions, Azure.ResourceManager.Cdn.Models.OverrideActionType action, int rateLimitThreshold, int rateLimitDurationInMinutes);
new Azure.ResourceManager.Cdn.Models.RateLimitRule : string * int * seq<Azure.ResourceManager.Cdn.Models.CustomRuleMatchCondition> * Azure.ResourceManager.Cdn.Models.OverrideActionType * int * int -> Azure.ResourceManager.Cdn.Models.RateLimitRule
Public Sub New (name As String, priority As Integer, matchConditions As IEnumerable(Of CustomRuleMatchCondition), action As OverrideActionType, rateLimitThreshold As Integer, rateLimitDurationInMinutes As Integer)
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
- IEnumerable<CustomRuleMatchCondition>
List of match conditions.
- action
- OverrideActionType
Describes what action to be applied when rule matches.
- rateLimitThreshold
- Int32
Defines rate limit threshold.
- rateLimitDurationInMinutes
- Int32
Defines rate limit duration. Default is 1 minute.
Exceptions
name
or matchConditions
is null.
Applies to
Azure SDK for .NET