Click or drag to resize
Task Scheduler Managed Class Library

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.12.0
Syntax
C#
public Wildcard(
	string pattern,
	RegexOptions options = RegexOptions.IgnoreCase|RegexOptions.Compiled|RegexOptions.IgnorePatternWhitespace
)
Request Example View Source

Parameters

pattern  String
The wildcard pattern to match.
options  RegexOptions  (Optional)
A combination of one or more RegexOptions.
See Also