RegexCompilationInfo.Name Property

Definition

Gets or sets the name of the type that represents the compiled regular expression.

public:
 property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
public string Name { get; set; }
member this.Name : string with get, set
Public Property Name As String

Property Value

The name of the new type.

Exceptions

The value for this property is null.

The value for this property is an empty string.

Remarks

The RegexCompilationInfo class is used to define a compiled regular expression, which is represented as a class derived from Regex. The Name property defines the class name of the regular expression type, and the Namespace and Name properties together define its fully qualified name.

Applies to