Partilhar via


RuleUpdateParameters Construtores

Definição

Sobrecargas

RuleUpdateParameters()

Inicializa uma nova instância da classe RuleUpdateParameters.

RuleUpdateParameters(Nullable<Int32>, IList<DeliveryRuleCondition>, IList<DeliveryRuleAction>, String)

Inicializa uma nova instância da classe RuleUpdateParameters.

RuleUpdateParameters()

Inicializa uma nova instância da classe RuleUpdateParameters.

public RuleUpdateParameters ();
Public Sub New ()

Aplica-se a

RuleUpdateParameters(Nullable<Int32>, IList<DeliveryRuleCondition>, IList<DeliveryRuleAction>, String)

Inicializa uma nova instância da classe RuleUpdateParameters.

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

Parâmetros

order
Nullable<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.

conditions
IList<DeliveryRuleCondition>

Uma lista de condições que devem ser correspondidas para que as ações sejam executadas

actions
IList<DeliveryRuleAction>

Uma lista de ações executadas quando todas as condições de uma regra são atendidas.

matchProcessingBehavior
String

Se essa regra for uma correspondência, o mecanismo de regras continuará executando as regras restantes ou parar. Se não estiver presente, o padrão será Continuar. Os valores possíveis incluem: 'Continue', 'Stop'

Aplica-se a