Enum 3962 RegexOptions
- App
- System Application
- Namespace
- System.Utilities
- Versions
- 17-28
Versions171819202122232425262728
Source in 29
src/System Application/App/Regex/src/RegexOptions.Enum.al51 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace System.Utilities;
enum 3962 RegexOptions
{
Extensible = false;
value(0; None)
{
}
value(1; IgnoreCase)
{
}
value(2; Multiline)
{
}
value(4; ExplicitCapture)
{
}
value(8; Compiled)
{
}
value(16; Singleline)
{
}
value(32; IgnorePatternWhitespace)
{
}
value(64; RightToLeft)
{
}
value(256; ECMAScript)
{
}
value(512; CultureInvariant)
{
}
}