DeliveryRule Construtores
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
DeliveryRule() |
Inicializa uma nova instância da classe DeliveryRule. |
DeliveryRule(Int32, IList<DeliveryRuleAction>, IList<DeliveryRuleCondition>) |
Inicializa uma nova instância da classe DeliveryRule. |
DeliveryRule()
Inicializa uma nova instância da classe DeliveryRule.
public DeliveryRule ();
Public Sub New ()
Aplica-se a
DeliveryRule(Int32, IList<DeliveryRuleAction>, IList<DeliveryRuleCondition>)
Inicializa uma nova instância da classe 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
A ordem na qual as regras são aplicadas para o ponto de extremidade. Valores possíveis {0,1,2,3,.........}. Uma regra com uma ordem menor será aplicada antes de uma regra com uma ordem maior. Regra com ordem 0 é uma regra especial. Ele não requer nenhuma condição e as ações listadas nele sempre serão aplicadas.
- actions
- IList<DeliveryRuleAction>
Uma lista de ações executadas quando todas as condições de uma regra são atendidas.
- conditions
- IList<DeliveryRuleCondition>
Uma lista de condições que devem ser correspondidas para que as ações sejam executadas
Aplica-se a
Azure SDK for .NET