RegexCompilationInfo Class
Provides information about a regular expression that is used to compile a regular expression to a stand-alone assembly.
Assembly: System (in System.dll)
| Name | Description | |
|---|---|---|
![]() | RegexCompilationInfo(String^, RegexOptions, String^, String^, Boolean) | Initializes a new instance of the RegexCompilationInfo class that contains information about a regular expression to be included in an assembly. |
![]() | RegexCompilationInfo(String^, RegexOptions, String^, String^, Boolean, TimeSpan) | Initializes a new instance of the RegexCompilationInfo class that contains information about a regular expression with a specified time-out value to be included in an assembly. |
| Name | Description | |
|---|---|---|
![]() | IsPublic | Gets or sets a value that indicates whether the compiled regular expression has public visibility. |
![]() | MatchTimeout | Gets or sets the regular expression's default time-out interval. |
![]() | Name | Gets or sets the name of the type that represents the compiled regular expression. |
![]() | Namespace | Gets or sets the namespace to which the new type belongs. |
![]() | Options | Gets or sets the options to use when compiling the regular expression. |
![]() | Pattern | Gets or sets the regular expression to compile. |
| 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.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
An array of RegexCompilationInfo objects is passed to the CompileToAssembly method to provide information about each regular expression to be included in the assembly. Each compiled regular expression that is included in the assembly is represented as a class derived from Regex. The properties of the RegexCompilationInfo type define the regular expression's class name, its fully qualified name (that is, its namespace and its type name), its regular expression pattern, any additional options (such as whether the regular expression is case-insensitive), and a time-out interval that specifies how long the regular expression engine should search for a match.
You can instantiate a RegexCompilationInfo object by calling its overloaded class constructor.
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.


