IncludeRegex Class
![]() |
---|
The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience. |
This API supports the product infrastructure and is not intended to be used directly from your code.
Provides a regular expression to parse an ASP.NET #include directive.
Assembly: System.Web.RegularExpressions (in System.Web.RegularExpressions.dll)
Name | Description | |
---|---|---|
![]() | IncludeRegex() | This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the IncludeRegex class. |
![]() | IncludeRegex(TimeSpan) | This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the IncludeRegex class with a specified time-out value. |
Name | Description | |
---|---|---|
![]() | CapNames | Gets or sets a dictionary that maps named capturing groups to their index values. (Inherited from Regex.) |
![]() | Caps | Gets or sets a dictionary that maps numbered capturing groups to their index values. (Inherited from Regex.) |
![]() | MatchTimeout | Gets the time-out interval of the current instance.(Inherited from Regex.) |
![]() | Options | |
![]() | RightToLeft | Gets a value that indicates whether the regular expression searches from right to left.(Inherited from Regex.) |
Name | Description | |
---|---|---|
![]() | Equals(Object) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetGroupNames() | Returns an array of capturing group names for the regular expression.(Inherited from Regex.) |
![]() | GetGroupNumbers() | Returns an array of capturing group numbers that correspond to group names in an array.(Inherited from Regex.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | GroupNameFromNumber(Int32) | Gets the group name that corresponds to the specified group number.(Inherited from Regex.) |
![]() | GroupNumberFromName(String) | Returns the group number that corresponds to the specified group name.(Inherited from Regex.) |
![]() | InitializeReferences() | This API supports the product infrastructure and is not intended to be used directly from your code. Used by a Regex object generated by the CompileToAssembly method. (Inherited from Regex.) |
![]() | IsMatch(String) | |
![]() | IsMatch(String, Int32) | |
![]() | Match(String) | |
![]() | 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.) |
![]() | MemberwiseClone() | |
![]() | 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, 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, 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.) |
![]() | 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, 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, 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.) |
![]() | Split(String) | |
![]() | Split(String, Int32) | |
![]() | 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.) |
![]() | ToString() | Returns the regular expression pattern that was passed into the Regex constructor.(Inherited from Regex.) |
![]() | UseOptionC() | This API supports the product infrastructure and is not intended to be used directly from your code. Used by a Regex object generated by the CompileToAssembly method.(Inherited from Regex.) |
![]() | UseOptionR() | This API supports the product infrastructure and is not intended to be used directly from your code. Used by a Regex object generated by the CompileToAssembly method.(Inherited from Regex.) |
Name | Description | |
---|---|---|
![]() | capnames | This API supports the product infrastructure and is not intended to be used directly from your code. Used by a Regex object generated by the CompileToAssembly method. (Inherited from Regex.) |
![]() | caps | This API supports the product infrastructure and is not intended to be used directly from your code. Used by a Regex object generated by the CompileToAssembly method. (Inherited from Regex.) |
![]() | capsize | This API supports the product infrastructure and is not intended to be used directly from your code. Used by a Regex object generated by the CompileToAssembly method. (Inherited from Regex.) |
![]() | capslist | This API supports the product infrastructure and is not intended to be used directly from your code. Used by a Regex object generated by the CompileToAssembly method. (Inherited from Regex.) |
![]() | factory | This API supports the product infrastructure and is not intended to be used directly from your code. Used by a Regex object generated by the CompileToAssembly method. (Inherited from Regex.) |
![]() | internalMatchTimeout | This API supports the product infrastructure and is not intended to be used directly from your code. The maximum amount of time that can elapse in a pattern-matching operation before the operation times out.(Inherited from Regex.) |
![]() | pattern | This API supports the product infrastructure and is not intended to be used directly from your code. Used by a Regex object generated by the CompileToAssembly method. (Inherited from Regex.) |
![]() | roptions | This API supports the product infrastructure and is not intended to be used directly from your code. Used by a Regex object generated by the CompileToAssembly method. (Inherited from Regex.) |
Name | Description | |
---|---|---|
![]() ![]() | ISerializable.GetObjectData(SerializationInfo, StreamingContext) | This API supports the product infrastructure and is not intended to be used directly from your code. Populates a SerializationInfo object with the data necessary to deserialize the current Regex object.(Inherited from Regex.) |
The IncludeRegex class provides a regular expression to parse an ASP.NET #include directive (<!-- #include file="filename.ext" -->).
![]() |
---|
The System.Web.RegularExpressions classes are used internally by the .NET Framework to parse ASP.NET pages. |
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.