Wildcard Class

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

Definition

Namespace: Microsoft.Win32.TaskScheduler
Assembly: Microsoft.Win32.TaskScheduler (in Microsoft.Win32.TaskScheduler.dll) Version: 2.11.0
public class Wildcard : Regex
Inheritance
Object    Regex    Wildcard

Constructors

Wildcard Initializes a wildcard with the given search pattern and options.

Properties

CapNamesGets or sets a dictionary that maps named capturing groups to their index values.
(Inherited from Regex)
CapsGets or sets a dictionary that maps numbered capturing groups to their index values.
(Inherited from Regex)
MatchTimeoutGets the time-out interval of the current instance.
(Inherited from Regex)
OptionsGets the options that were passed into the Regex constructor.
(Inherited from Regex)
RightToLeftGets a value that indicates whether the regular expression searches from right to left.
(Inherited from Regex)

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetGroupNamesReturns an array of capturing group names for the regular expression.
(Inherited from Regex)
GetGroupNumbersReturns an array of capturing group numbers that correspond to group names in an array.
(Inherited from Regex)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
GroupNameFromNumberGets the group name that corresponds to the specified group number.
(Inherited from Regex)
GroupNumberFromNameReturns the group number that corresponds to the specified group name.
(Inherited from Regex)
InitializeReferencesUsed by a Regex object generated by the {0} Overload method.
(Inherited from Regex)
IsMatch(String)Indicates whether the regular expression specified in the Regex constructor finds a match in a specified input string.
(Inherited from Regex)
IsMatch(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)
Match(String)Searches the specified input string for the first occurrence of the regular expression specified in the Regex constructor.
(Inherited from Regex)
Match(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)
Match(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)
Matches(String)Searches the specified input string for all occurrences of a regular expression.
(Inherited from Regex)
Matches(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)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Replace(String, String)In a specified input string, replaces all strings that match a regular expression pattern with a specified replacement string.
(Inherited from Regex)
Replace(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)
Replace(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)
Replace(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)
Replace(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)
Replace(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)
Split(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)
Split(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)
Split(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)
ToStringReturns the regular expression pattern that was passed into the Regex constructor.
(Inherited from Regex)
UseOptionCUsed by a Regex object generated by the {0} Overload method.
(Inherited from Regex)
UseOptionRUsed by a Regex object generated by the {0} Overload method.
(Inherited from Regex)
WildcardToRegex Converts a wildcard to a regular expression.

Fields

capnamesUsed by a Regex object generated by the {0} Overload method.
(Inherited from Regex)
capsUsed by a Regex object generated by the {0} Overload method.
(Inherited from Regex)
capsizeUsed by a Regex object generated by the {0} Overload method.
(Inherited from Regex)
capslistUsed by a Regex object generated by the {0} Overload method.
(Inherited from Regex)
factoryUsed by a Regex object generated by the {0} Overload method.
(Inherited from Regex)
internalMatchTimeoutThe maximum amount of time that can elapse in a pattern-matching operation before the operation times out.
(Inherited from Regex)
patternUsed by a Regex object generated by the {0} Overload method.
(Inherited from Regex)
roptionsUsed by a Regex object generated by the {0} Overload method.
(Inherited from Regex)

See Also