共用方式為


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>

必須比對要執行之動作的條件清單

適用於