RegexCompilationInfo.IsPublic Property

Definition

Gets or sets a value that indicates whether the compiled regular expression has public visibility.

public:
 property bool IsPublic { bool get(); void set(bool value); };
public bool IsPublic { get; set; }
member this.IsPublic : bool with get, set
Public Property IsPublic As Boolean

Property Value

true if the regular expression has public visibility; otherwise, false.

Remarks

If the IsPublic property is false, the regular expression class defined by the current instance can be instantiated only by code that is executing in the assembly that contains the class. However, because the Regex.CompileToAssembly method generates an assembly that contains only compiled regular expressions and does not allow additional code to be added, there is generally no reason to assign this property a value of false.

Applies to