[Serializable] |
ctor #1 | Creates a RegexCompilationInfo object containing the information the compiler needs to create the assembly. |
IsPublic | Read-write Gets or sets a value indicating whether the compiled regular expression has public visibility. |
Name | Read-write Gets or sets the name of the type to use for the compiled regular expression. |
Namespace | Read-write Gets or sets the namespace to add the new type to. |
Options | Read-write Gets or sets the compiler options to use when compiling the regular expression. |
Pattern | Read-write Gets or sets the regular expression to compile. |
Equals (inherited from System.Object) |
See base class member description: System.Object.Equals Derived from System.Object, the primary base class for all objects. |
GetHashCode (inherited from System.Object) |
See base class member description: System.Object.GetHashCode Derived from System.Object, the primary base class for all objects. |
GetType (inherited from System.Object) |
See base class member description: System.Object.GetType Derived from System.Object, the primary base class for all objects. |
ToString (inherited from System.Object) |
See base class member description: System.Object.ToString Derived from System.Object, the primary base class for all objects. |
Finalize (inherited from System.Object) |
See base class member description: System.Object.Finalize Derived from System.Object, the primary base class for all objects. |
MemberwiseClone (inherited from System.Object) |
See base class member description: System.Object.MemberwiseClone Derived from System.Object, the primary base class for all objects. |
Hierarchy:
public RegexCompilationInfo( |
pattern
options
name
fullnamespace
ispublic
public bool IsPublic {get; set;}
|
public string Name {get; set;}
|
MyCompiledRegex
and Namespace is
MyRegexNamespace
, you would refer to the compiled regular expression in code as
MyRegexNamespace.MyCompiledRegex
.
public string Namespace {get; set;}
|
MyCompiledRegex
and Namespace is
MyRegexNamespace
, you would refer to the compiled regular expression in code as
MyRegexNamespace.MyCompiledRegex
.
public RegexOptions Options {get; set;}
|
public string Pattern {get; set;}
|
~RegexCompilationInfo(); |
public virtual int GetHashCode(); |
public Type GetType(); |
protected object MemberwiseClone(); |
public virtual string ToString(); |