//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Text.RegularExpressions { using System; /// /// [To be supplied.] /// [Flags] public enum RegexOptions { /// /// [To be supplied.] /// None = 0x0000, /// /// [To be supplied.] /// IgnoreCase = 0x0001, // "i" /// /// [To be supplied.] /// Multiline = 0x0002, // "m" /// /// [To be supplied.] /// ExplicitCapture = 0x0004, // "n" #if !SILVERLIGHT || FEATURE_LEGACYNETCF || MOBILE /// /// [To be supplied.] /// Compiled = 0x0008, // "c" #endif /// /// [To be supplied.] /// Singleline = 0x0010, // "s" /// /// [To be supplied.] /// IgnorePatternWhitespace = 0x0020, // "x" /// /// [To be supplied.] /// RightToLeft = 0x0040, // "r" #if DBG /// /// /// [To be supplied.] /// Debug= 0x0080, // "d" #endif /// /// [To be supplied.] /// ECMAScript = 0x0100, // "e" /// /// [To be supplied.] /// CultureInvariant = 0x0200, } }