MatchCondition コンストラクター

定義

オーバーロード

MatchCondition()

MatchCondition クラスの新しいインスタンスを初期化します。

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

MatchCondition クラスの新しいインスタンスを初期化します。

MatchCondition()

MatchCondition クラスの新しいインスタンスを初期化します。

public MatchCondition ();
Public Sub New ()

適用対象

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

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)

パラメーター

matchVariable
String

比較対象の変数を照合します。 使用できる値は、'RemoteAddr'、'SocketAddr'、'RequestMethod'、'RequestHeader'、'RequestUri'、'QueryString'、'RequestBody'、'Cookies'、'PostArgs' です。

operatorProperty
String

照合する演算子について説明します。 使用できる値は、'Any'、'IPMatch'、'GeoMatch'、'Equal'、'Contains'、'LessThan'、'GreaterThan'、'LessThanOrEqual'、'GreaterThanOrEqual'、'BeginsWith'、'EndsWith'、'RegEx' です。

matchValue
IList<String>

一致する可能性のある値の一覧。

selector
String

セレクターを使用して、QueryString、Cookie、RequestHeader、PostArgs の特定のキーを照合できます。

negateCondition
Nullable<Boolean>

この条件の結果を否定する必要があるかどうかを記述します。

transforms
IList<String>

変換の一覧。

適用対象