GeneratedRegexAttribute コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
GeneratedRegexAttribute(String) |
指定したパターンを使用して、 の GeneratedRegexAttribute 新しいインスタンスを初期化します。 |
GeneratedRegexAttribute(String, RegexOptions) |
指定したパターンとオプションを使用して、 の GeneratedRegexAttribute 新しいインスタンスを初期化します。 |
GeneratedRegexAttribute(String, RegexOptions, Int32) |
指定したパターン、オプション、タイムアウト値を使用して、 の GeneratedRegexAttribute 新しいインスタンスを初期化します。 |
GeneratedRegexAttribute(String, RegexOptions, String) |
指定したパターンとオプションを使用して、 の GeneratedRegexAttribute 新しいインスタンスを初期化します。 |
GeneratedRegexAttribute(String, RegexOptions, Int32, String) |
指定したパターン、オプション、タイムアウト値、カルチャを使用して、 の GeneratedRegexAttribute 新しいインスタンスを初期化します。 |
GeneratedRegexAttribute(String)
指定したパターンを使用して、 の GeneratedRegexAttribute 新しいインスタンスを初期化します。
public:
GeneratedRegexAttribute(System::String ^ pattern);
public GeneratedRegexAttribute (string pattern);
new System.Text.RegularExpressions.GeneratedRegexAttribute : string -> System.Text.RegularExpressions.GeneratedRegexAttribute
Public Sub New (pattern As String)
パラメーター
- pattern
- String
一致させる正規表現パターン。
適用対象
GeneratedRegexAttribute(String, RegexOptions)
指定したパターンとオプションを使用して、 の GeneratedRegexAttribute 新しいインスタンスを初期化します。
public:
GeneratedRegexAttribute(System::String ^ pattern, System::Text::RegularExpressions::RegexOptions options);
public GeneratedRegexAttribute (string pattern, System.Text.RegularExpressions.RegexOptions options);
new System.Text.RegularExpressions.GeneratedRegexAttribute : string * System.Text.RegularExpressions.RegexOptions -> System.Text.RegularExpressions.GeneratedRegexAttribute
Public Sub New (pattern As String, options As RegexOptions)
パラメーター
- pattern
- String
一致させる正規表現パターン。
- options
- RegexOptions
正規表現を変更する列挙値のビットごとの組み合わせ。
適用対象
GeneratedRegexAttribute(String, RegexOptions, Int32)
指定したパターン、オプション、タイムアウト値を使用して、 の GeneratedRegexAttribute 新しいインスタンスを初期化します。
public:
GeneratedRegexAttribute(System::String ^ pattern, System::Text::RegularExpressions::RegexOptions options, int matchTimeoutMilliseconds);
public GeneratedRegexAttribute (string pattern, System.Text.RegularExpressions.RegexOptions options, int matchTimeoutMilliseconds);
new System.Text.RegularExpressions.GeneratedRegexAttribute : string * System.Text.RegularExpressions.RegexOptions * int -> System.Text.RegularExpressions.GeneratedRegexAttribute
Public Sub New (pattern As String, options As RegexOptions, matchTimeoutMilliseconds As Integer)
パラメーター
- pattern
- String
一致させる正規表現パターン。
- options
- RegexOptions
正規表現を変更する列挙値のビットごとの組み合わせ。
適用対象
GeneratedRegexAttribute(String, RegexOptions, String)
指定したパターンとオプションを使用して、 の GeneratedRegexAttribute 新しいインスタンスを初期化します。
public:
GeneratedRegexAttribute(System::String ^ pattern, System::Text::RegularExpressions::RegexOptions options, System::String ^ cultureName);
public GeneratedRegexAttribute (string pattern, System.Text.RegularExpressions.RegexOptions options, string cultureName);
new System.Text.RegularExpressions.GeneratedRegexAttribute : string * System.Text.RegularExpressions.RegexOptions * string -> System.Text.RegularExpressions.GeneratedRegexAttribute
Public Sub New (pattern As String, options As RegexOptions, cultureName As String)
パラメーター
- pattern
- String
一致させる正規表現パターン。
- options
- RegexOptions
正規表現を変更する列挙値のビットごとの組み合わせ。
- cultureName
- String
大文字と小文字を区別する比較に使用するカルチャの名前。
cultureName
では、大文字と小文字は区別されません。
注釈
Windows システム上の定義済みのカルチャ名の一覧については、Windows でサポートされている言語/地域名の一覧の言語タグ列を参照してください。 カルチャ名は、BCP 47 によって定義されている標準に準拠します。 また、Windows 10 以降では、cultureName
任意の有効な BCP-47 言語タグを指定できます。 が Emptyの場合cultureName
は、インバリアント カルチャが使用されます。
適用対象
GeneratedRegexAttribute(String, RegexOptions, Int32, String)
指定したパターン、オプション、タイムアウト値、カルチャを使用して、 の GeneratedRegexAttribute 新しいインスタンスを初期化します。
public:
GeneratedRegexAttribute(System::String ^ pattern, System::Text::RegularExpressions::RegexOptions options, int matchTimeoutMilliseconds, System::String ^ cultureName);
public GeneratedRegexAttribute (string pattern, System.Text.RegularExpressions.RegexOptions options, int matchTimeoutMilliseconds, string cultureName);
new System.Text.RegularExpressions.GeneratedRegexAttribute : string * System.Text.RegularExpressions.RegexOptions * int * string -> System.Text.RegularExpressions.GeneratedRegexAttribute
Public Sub New (pattern As String, options As RegexOptions, matchTimeoutMilliseconds As Integer, cultureName As String)
パラメーター
- pattern
- String
一致させる正規表現パターン。
- options
- RegexOptions
正規表現を変更する列挙値のビットごとの組み合わせ。
- cultureName
- String
大文字と小文字を区別する比較に使用するカルチャの名前。
cultureName
では、大文字と小文字は区別されません。
注釈
Windows システム上の定義済みのカルチャ名の一覧については、Windows でサポートされている言語/地域名の一覧の言語タグ列を参照してください。 カルチャ名は、BCP 47 によって定義されている標準に準拠します。 また、Windows 10 以降では、cultureName
任意の有効な BCP-47 言語タグを指定できます。 が Emptyの場合cultureName
は、インバリアント カルチャが使用されます。
適用対象
.NET