CustomRule 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
CustomRule() |
Inicializa uma nova instância da classe CustomRule. |
CustomRule(String, Int32, IList<MatchCondition>, String, String) |
Inicializa uma nova instância da classe CustomRule. |
CustomRule()
Inicializa uma nova instância da classe CustomRule.
public CustomRule ();
Public Sub New ()
Aplica-se a
CustomRule(String, Int32, IList<MatchCondition>, String, String)
Inicializa uma nova instância da classe CustomRule.
public CustomRule (string name, int priority, System.Collections.Generic.IList<Microsoft.Azure.Management.Cdn.Models.MatchCondition> matchConditions, string action, string enabledState = default);
new Microsoft.Azure.Management.Cdn.Models.CustomRule : string * int * System.Collections.Generic.IList<Microsoft.Azure.Management.Cdn.Models.MatchCondition> * string * string -> Microsoft.Azure.Management.Cdn.Models.CustomRule
Public Sub New (name As String, priority As Integer, matchConditions As IList(Of MatchCondition), action As String, Optional enabledState As String = Nothing)
Parâmetros
- name
- String
Define o nome da regra personalizada
- priority
- Int32
Define em que ordem essa regra será avaliada na lista geral de regras personalizadas
- matchConditions
- IList<MatchCondition>
Lista de condições de correspondência.
- action
- String
Descreve qual ação a ser aplicada quando a regra corresponde. Os valores possíveis incluem: 'Allow', 'Block', 'Log', 'Redirect'
- enabledState
- String
Descreve se a regra personalizada está no estado habilitado ou desabilitado. O padrão será Habilitado se não for especificado. Os valores possíveis são: “Disabled” e “Enabled”
Aplica-se a
Azure SDK for .NET