你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

RuleUpdateParameters 构造函数

定义

重载

RuleUpdateParameters()

初始化 RuleUpdateParameters 类的新实例。

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

初始化 RuleUpdateParameters 类的新实例。

RuleUpdateParameters()

初始化 RuleUpdateParameters 类的新实例。

public RuleUpdateParameters ();
Public Sub New ()

适用于

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

初始化 RuleUpdateParameters 类的新实例。

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)

参数

order
Nullable<Int32>

为终结点应用规则的顺序。 可能的值 {0,1,2,3,.........}。 顺序较小的规则将在顺序较大的规则之前应用。 顺序为 0 的规则是一种特殊规则。 它不需要任何条件,将始终应用其中列出的操作。

conditions
IList<DeliveryRuleCondition>

要执行的操作必须匹配的条件列表

actions
IList<DeliveryRuleAction>

满足规则的所有条件时执行的操作列表。

matchProcessingBehavior
String

如果此规则是匹配项,则规则引擎应继续运行剩余规则或停止。 如果不存在,则默认为“继续”。 可能的值包括:“Continue”、“Stop”

适用于