Aracılığıyla paylaş


MatchCondition Constructors

Definition

Overloads

MatchCondition()

Initializes a new instance of the MatchCondition class.

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

Initializes a new instance of the MatchCondition class.

MatchCondition()

Initializes a new instance of the MatchCondition class.

public MatchCondition ();
Public Sub New ()

Applies to

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

Initializes a new instance of the MatchCondition class.

public MatchCondition (System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.MatchVariable> matchVariables, string operatorProperty, System.Collections.Generic.IList<string> matchValues, bool? negationConditon = default, System.Collections.Generic.IList<string> transforms = default);
new Microsoft.Azure.Management.Network.Models.MatchCondition : System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.MatchVariable> * string * System.Collections.Generic.IList<string> * Nullable<bool> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.Network.Models.MatchCondition
Public Sub New (matchVariables As IList(Of MatchVariable), operatorProperty As String, matchValues As IList(Of String), Optional negationConditon As Nullable(Of Boolean) = Nothing, Optional transforms As IList(Of String) = Nothing)

Parameters

matchVariables
IList<MatchVariable>

List of match variables.

operatorProperty
String

The operator to be matched. Possible values include: 'IPMatch', 'Equal', 'Contains', 'LessThan', 'GreaterThan', 'LessThanOrEqual', 'GreaterThanOrEqual', 'BeginsWith', 'EndsWith', 'Regex', 'GeoMatch', 'Any'

matchValues
IList<String>

Match value.

negationConditon
Nullable<Boolean>

Whether this is negate condition or not.

transforms
IList<String>

List of transforms.

Applies to