 | Wildcard Constructor |
Initializes a wildcard with the given search pattern and options.
Namespace:
Microsoft.Win32.TaskScheduler
Assembly:
Microsoft.Win32.TaskScheduler (in Microsoft.Win32.TaskScheduler.dll) Version: 2.10.1
Syntaxpublic Wildcard(
string pattern,
RegexOptions options = RegexOptions.IgnoreCase|RegexOptions.Compiled|RegexOptions.IgnorePatternWhitespace
)
Public Sub New (
pattern As String,
Optional options As RegexOptions = RegexOptions.IgnoreCase Or RegexOptions.Compiled Or RegexOptions.IgnorePatternWhitespace
)
public:
Wildcard(
String^ pattern,
RegexOptions options = RegexOptions::IgnoreCase|RegexOptions::Compiled|RegexOptions::IgnorePatternWhitespace
)
Request Example
View SourceParameters
- pattern
- Type: SystemString
The wildcard pattern to match. - options (Optional)
- Type: System.Text.RegularExpressionsRegexOptions
A combination of one or more RegexOptions.
See Also