Compartilhar via


MatchCondition Construtores

Definição

Sobrecargas

MatchCondition()

Inicializa uma nova instância da classe MatchCondition.

MatchCondition(String, String, IList<String>, String, Nullable<Boolean>, IList<String>)

Inicializa uma nova instância da classe MatchCondition.

MatchCondition()

Inicializa uma nova instância da classe MatchCondition.

public MatchCondition ();
Public Sub New ()

Aplica-se a

MatchCondition(String, String, IList<String>, String, Nullable<Boolean>, IList<String>)

Inicializa uma nova instância da classe MatchCondition.

public MatchCondition (string matchVariable, string operatorProperty, System.Collections.Generic.IList<string> matchValue, string selector = default, bool? negateCondition = default, System.Collections.Generic.IList<string> transforms = default);
new Microsoft.Azure.Management.Cdn.Models.MatchCondition : string * string * System.Collections.Generic.IList<string> * string * Nullable<bool> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.Cdn.Models.MatchCondition
Public Sub New (matchVariable As String, operatorProperty As String, matchValue As IList(Of String), Optional selector As String = Nothing, Optional negateCondition As Nullable(Of Boolean) = Nothing, Optional transforms As IList(Of String) = Nothing)

Parâmetros

matchVariable
String

Corresponder variável com a qual comparar. Os valores possíveis incluem: 'RemoteAddr', 'SocketAddr', 'RequestMethod', 'RequestHeader', 'RequestUri', 'QueryString', 'RequestBody', 'Cookies', 'PostArgs'

operatorProperty
String

Descreve o operador a ser correspondido. Os valores possíveis incluem: 'Any', 'IPMatch', 'GeoMatch', 'Equal', 'Contains', 'LessThan', 'GreaterThan', 'LessThanOrEqual', 'GreaterThanOrEqual', 'BeginsWith', 'EndsWith', 'RegEx'

matchValue
IList<String>

Lista de possíveis valores de correspondência.

selector
String

O seletor pode ser usado para corresponder a uma chave específica para QueryString, Cookies, RequestHeader ou PostArgs.

negateCondition
Nullable<Boolean>

Descreve se o resultado dessa condição deve ser negado.

transforms
IList<String>

Lista de transformações.

Aplica-se a