共用方式為


RemoteAddressMatchConditionParameters Constructors

Definition

Overloads

RemoteAddressMatchConditionParameters()

Initializes a new instance of the RemoteAddressMatchConditionParameters class.

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

Initializes a new instance of the RemoteAddressMatchConditionParameters class.

RemoteAddressMatchConditionParameters()

Initializes a new instance of the RemoteAddressMatchConditionParameters class.

public RemoteAddressMatchConditionParameters ();
Public Sub New ()

Applies to

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

Initializes a new instance of the RemoteAddressMatchConditionParameters class.

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

Parameters

operatorProperty
String

Describes operator to be matched. Possible values include: 'Any', 'IPMatch', 'GeoMatch'

negateCondition
Nullable<Boolean>

Describes if this is negate condition or not

matchValues
IList<String>

Match values to match against. The operator will apply to each value in here with OR semantics. If any of them match the variable with the given operator this match condition is considered a match.

transforms
IList<String>

List of transforms

Applies to