共用方式為


RuleUpdateParameters Constructors

Definition

Overloads

RuleUpdateParameters()

Initializes a new instance of the RuleUpdateParameters class.

RuleUpdateParameters(Nullable<Int32>, IList<DeliveryRuleCondition>, IList<DeliveryRuleAction>, String)

Initializes a new instance of the RuleUpdateParameters class.

RuleUpdateParameters()

Initializes a new instance of the RuleUpdateParameters class.

public RuleUpdateParameters ();
Public Sub New ()

Applies to

RuleUpdateParameters(Nullable<Int32>, IList<DeliveryRuleCondition>, IList<DeliveryRuleAction>, String)

Initializes a new instance of the RuleUpdateParameters class.

public RuleUpdateParameters (int? order = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Cdn.Models.DeliveryRuleCondition> conditions = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Cdn.Models.DeliveryRuleAction> actions = default, string matchProcessingBehavior = default);
new Microsoft.Azure.Management.Cdn.Models.RuleUpdateParameters : Nullable<int> * System.Collections.Generic.IList<Microsoft.Azure.Management.Cdn.Models.DeliveryRuleCondition> * System.Collections.Generic.IList<Microsoft.Azure.Management.Cdn.Models.DeliveryRuleAction> * string -> Microsoft.Azure.Management.Cdn.Models.RuleUpdateParameters
Public Sub New (Optional order As Nullable(Of Integer) = Nothing, Optional conditions As IList(Of DeliveryRuleCondition) = Nothing, Optional actions As IList(Of DeliveryRuleAction) = Nothing, Optional matchProcessingBehavior As String = Nothing)

Parameters

order
Nullable<Int32>

The order in which the rules are applied for the endpoint. Possible values {0,1,2,3,………}. A rule with a lesser order will be applied before a rule with a greater order. Rule with order 0 is a special rule. It does not require any condition and actions listed in it will always be applied.

conditions
IList<DeliveryRuleCondition>

A list of conditions that must be matched for the actions to be executed

actions
IList<DeliveryRuleAction>

A list of actions that are executed when all the conditions of a rule are satisfied.

matchProcessingBehavior
String

If this rule is a match should the rules engine continue running the remaining rules or stop. If not present, defaults to Continue. Possible values include: 'Continue', 'Stop'

Applies to