Compartir a través de


DeliveryRule Constructores

Definición

Sobrecargas

DeliveryRule()

Inicializa una nueva instancia de la clase DeliveryRule.

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

Inicializa una nueva instancia de la clase DeliveryRule.

DeliveryRule()

Inicializa una nueva instancia de la clase DeliveryRule.

public DeliveryRule ();
Public Sub New ()

Se aplica a

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

Inicializa una nueva instancia de la clase 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)

Parámetros

order
Int32

Orden en el que se aplican las reglas para el punto de conexión. Valores posibles {0,1,2,3,.........}. Se aplicará una regla con un orden menor antes de una regla con un orden mayor. La regla con el orden 0 es una regla especial. No requiere ninguna condición y las acciones enumeradas en él siempre se aplicarán.

actions
IList<DeliveryRuleAction>

Lista de acciones que se ejecutan cuando se cumplen todas las condiciones de una regla.

conditions
IList<DeliveryRuleCondition>

Lista de condiciones que deben coincidir para que se ejecuten las acciones.

Se aplica a