mscorlib(4.0.0.0) API with additions
RegexOptions.cs
2 {
4  [Flags]
5  [global::__DynamicallyInvokable]
6  public enum RegexOptions
7  {
9  [global::__DynamicallyInvokable]
10  None = 0x0,
12  [global::__DynamicallyInvokable]
13  IgnoreCase = 0x1,
15  [global::__DynamicallyInvokable]
16  Multiline = 0x2,
18  [global::__DynamicallyInvokable]
19  ExplicitCapture = 0x4,
21  [global::__DynamicallyInvokable]
22  Compiled = 0x8,
24  [global::__DynamicallyInvokable]
25  Singleline = 0x10,
27  [global::__DynamicallyInvokable]
30  [global::__DynamicallyInvokable]
31  RightToLeft = 0x40,
33  [global::__DynamicallyInvokable]
34  ECMAScript = 0x100,
36  [global::__DynamicallyInvokable]
37  CultureInvariant = 0x200
38  }
39 }
Enables ECMAScript-compliant behavior for the expression. This value can be used only in conjunction ...
Specifies that cultural differences in language is ignored. For more information, see the "Comparison...
Specifies that the only valid captures are explicitly named or numbered groups of the form (?...
Specifies that the regular expression is compiled to an assembly. This yields faster execution but in...
Eliminates unescaped white space from the pattern and enables comments marked with #....
Multiline mode. Changes the meaning of ^ and $ so they match at the beginning and end,...
RegexOptions
Provides enumerated values to use to set regular expression options.
Definition: RegexOptions.cs:6
Specifies single-line mode. Changes the meaning of the dot (.) so it matches every character (instead...