次の方法で共有


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 です。 使用可能な値は、'Continue'、'Stop' です。

適用対象