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)
The RegexCompilationInfo type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | RegexCompilationInfo | Initializes a new instance of the RegexCompilationInfo class that contains information about a regular expression to be included in an assembly. |
| Name | Description | |
|---|---|---|
![]() | IsPublic | Gets or sets a value that indicates whether the compiled regular expression has public visibility. |
![]() | 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 a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | 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, and any additional options (such as whether the regular expression is case-insensitive).
You can instantiate a RegexCompilationInfo object by calling its class constructor.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.


