Regex.Options Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the options that were passed into the Regex constructor.
public:
property System::Text::RegularExpressions::RegexOptions Options { System::Text::RegularExpressions::RegexOptions get(); };
public System.Text.RegularExpressions.RegexOptions Options { get; }
member this.Options : System.Text.RegularExpressions.RegexOptions
Public ReadOnly Property Options As RegexOptions
Property Value
One or more members of the RegexOptions enumeration that represent options that were passed to the Regex constructor.
Remarks
The value of the Options property consists of one or more members of the RegexOptions enumeration. If no options were defined in the Regex class constructor, its value is RegexOptions.None. The available options are discussed in detail in the Regular Expression Options topic.
Note that the Options property does not reflect inline options defined in the regular expression pattern itself.
Notes to Inheritors
Regex is the base class of regular expressions created by the CompileToAssembly method. These compiled regular expressions use the base class implementation of the Options property. If called from a derived class, the Options property returns the options that were passed to the options
parameter of the RegexCompilationInfo class constructor that was used to define the regular expression.