次の方法で共有


DeliveryRule コンストラクター

定義

オーバーロード

DeliveryRule()

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

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

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

DeliveryRule()

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

public DeliveryRule ();
Public Sub New ()

適用対象

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

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

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

パラメーター

order
Int32

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

actions
IList<DeliveryRuleAction>

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

conditions
IList<DeliveryRuleCondition>

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

適用対象