次の方法で共有


DeliveryRule コンストラクター

定義

オーバーロード

DeliveryRule()

DeliveryRule クラスの新しいインスタンスを初期化します。

DeliveryRule(Int32, IList<DeliveryRuleAction>, String, IList<DeliveryRuleCondition>)

DeliveryRule クラスの新しいインスタンスを初期化します。

DeliveryRule()

DeliveryRule クラスの新しいインスタンスを初期化します。

public DeliveryRule ();
Public Sub New ()

適用対象

DeliveryRule(Int32, IList<DeliveryRuleAction>, String, IList<DeliveryRuleCondition>)

DeliveryRule クラスの新しいインスタンスを初期化します。

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

パラメーター

order
Int32

エンドポイントにルールが適用される順序。 使用可能な値 {0,1,2,3,.........} 順序が小さいルールは、より大きな順序のルールの前に適用されます。 順序 0 のルールは特別なルールです。 条件を必要とせず、それに記載されているアクションは常に適用されます。

actions
IList<DeliveryRuleAction>

ルールのすべての条件が満たされたときに実行されるアクションの一覧。

name
String

ルールの名前

conditions
IList<DeliveryRuleCondition>

アクションを実行するために一致する必要がある条件の一覧

適用対象