Click or drag to resize
Task Scheduler Managed Class Library

Wildcard Class

Represents a wildcard running on the System.Text.RegularExpressions engine.
Inheritance Hierarchy

Namespace:  Microsoft.Win32.TaskScheduler
Assembly:  Microsoft.Win32.TaskScheduler (in Microsoft.Win32.TaskScheduler.dll) Version: 2.10.1
Syntax
public class Wildcard : Regex
Request Example View Source

The Wildcard type exposes the following members.

Constructors
  NameDescription
Public methodWildcard
Initializes a wildcard with the given search pattern and options.
Top
Properties
  NameDescription
Public propertyMatchTimeout
Gets the time-out interval of the current instance.
(Inherited from Regex.)
Public propertyOptions
Gets the options that were passed into the Regex constructor.
(Inherited from Regex.)
Public propertyRightToLeft
Gets a value that indicates whether the regular expression searches from right to left.
(Inherited from Regex.)
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetGroupNames
Returns an array of capturing group names for the regular expression.
(Inherited from Regex.)
Public methodGetGroupNumbers
Returns an array of capturing group numbers that correspond to group names in an array.
(Inherited from Regex.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGroupNameFromNumber
Gets the group name that corresponds to the specified group number.
(Inherited from Regex.)
Public methodGroupNumberFromName
Returns the group number that corresponds to the specified group name.
(Inherited from Regex.)
Protected methodInitializeReferences (Inherited from Regex.)
Public methodIsMatch(String)
Indicates whether the regular expression specified in the Regex constructor finds a match in a specified input string.
(Inherited from Regex.)
Public methodIsMatch(String, Int32)
Indicates whether the regular expression specified in the Regex constructor finds a match in the specified input string, beginning at the specified starting position in the string.
(Inherited from Regex.)
Public methodMatch(String)
Searches the specified input string for the first occurrence of the regular expression specified in the Regex constructor.
(Inherited from Regex.)
Public methodMatch(String, Int32)
Searches the input string for the first occurrence of a regular expression, beginning at the specified starting position in the string.
(Inherited from Regex.)
Public methodMatch(String, Int32, Int32)
Searches the input string for the first occurrence of a regular expression, beginning at the specified starting position and searching only the specified number of characters.
(Inherited from Regex.)
Public methodMatches(String)
Searches the specified input string for all occurrences of a regular expression.
(Inherited from Regex.)
Public methodMatches(String, Int32)
Searches the specified input string for all occurrences of a regular expression, beginning at the specified starting position in the string.
(Inherited from Regex.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodReplace(String, String)
In a specified input string, replaces all strings that match a regular expression pattern with a specified replacement string.
(Inherited from Regex.)
Public methodReplace(String, MatchEvaluator)
In a specified input string, replaces all strings that match a specified regular expression with a string returned by a MatchEvaluator delegate.
(Inherited from Regex.)
Public methodReplace(String, String, Int32)
In a specified input string, replaces a specified maximum number of strings that match a regular expression pattern with a specified replacement string.
(Inherited from Regex.)
Public methodReplace(String, MatchEvaluator, Int32)
In a specified input string, replaces a specified maximum number of strings that match a regular expression pattern with a string returned by a MatchEvaluator delegate.
(Inherited from Regex.)
Public methodReplace(String, String, Int32, Int32)
In a specified input substring, replaces a specified maximum number of strings that match a regular expression pattern with a specified replacement string.
(Inherited from Regex.)
Public methodReplace(String, MatchEvaluator, Int32, Int32)
In a specified input substring, replaces a specified maximum number of strings that match a regular expression pattern with a string returned by a MatchEvaluator delegate.
(Inherited from Regex.)
Public methodSplit(String)
Splits an input string into an array of substrings at the positions defined by a regular expression pattern specified in the Regex constructor.
(Inherited from Regex.)
Public methodSplit(String, Int32)
Splits an input string a specified maximum number of times into an array of substrings, at the positions defined by a regular expression specified in the Regex constructor.
(Inherited from Regex.)
Public methodSplit(String, Int32, Int32)
Splits an input string a specified maximum number of times into an array of substrings, at the positions defined by a regular expression specified in the Regex constructor. The search for the regular expression pattern starts at a specified character position in the input string.
(Inherited from Regex.)
Public methodToString
Returns the regular expression pattern that was passed into the Regex constructor.
(Inherited from Regex.)
Protected methodUseOptionC (Inherited from Regex.)
Protected methodUseOptionR (Inherited from Regex.)
Public methodStatic memberWildcardToRegex
Converts a wildcard to a regular expression.
Top
Fields
  NameDescription
Protected fieldcapnames (Inherited from Regex.)
Protected fieldcaps (Inherited from Regex.)
Protected fieldcapsize (Inherited from Regex.)
Protected fieldcapslist (Inherited from Regex.)
Protected fieldfactory (Inherited from Regex.)
Protected fieldinternalMatchTimeout
The maximum amount of time that can elapse in a pattern-matching operation before the operation times out.
(Inherited from Regex.)
Protected fieldpattern (Inherited from Regex.)
Protected fieldroptions (Inherited from Regex.)
Top
See Also