24 references to Singleline
PresentationFramework (1)
src\Framework\System\Windows\Documents\WinRTSpellerInterop.cs (1)
645RegexOptions regexOptions = RegexOptions.Singleline | RegexOptions.CultureInvariant | RegexOptions.Compiled;
System (3)
net\System\Net\WebPermission.cs (1)
219_AsRegex = new Regex(_AsString + "[/]?", RegexOptions.IgnoreCase | RegexOptions.Compiled | RegexOptions.Singleline | RegexOptions.CultureInvariant);
regex\system\text\regularexpressions\RegexParser.cs (2)
1492return RegexOptions.Singleline; 1777return(_options & RegexOptions.Singleline) != 0;
System.Data (2)
fx\src\data\System\Data\Common\DBCommandBuilder.cs (1)
51_parameterNameParser = new Regex(_dbCommandBuilder.ParameterNamePattern, RegexOptions.ExplicitCapture | RegexOptions.Singleline);
fx\src\data\System\Data\SqlClient\SqlCommandSet.cs (1)
24private static readonly Regex SqlIdentifierParser = new Regex(SqlIdentifierPattern, RegexOptions.ExplicitCapture|RegexOptions.Singleline);
System.Data.Entity (4)
System\Data\Common\EntitySql\CqlLexerHelpers.cs (3)
792_reDateTimeValue = new Regex(_datetimeValueRegularExpression, RegexOptions.Singleline | RegexOptions.CultureInvariant); 808_reTimeValue = new Regex(_timeValueRegularExpression, RegexOptions.Singleline | RegexOptions.CultureInvariant); 824_reDateTimeOffsetValue = new Regex(_datetimeOffsetValueRegularExpression, RegexOptions.Singleline | RegexOptions.CultureInvariant);
System\Data\EntityModel\SchemaObjectModel\Utils.cs (1)
41private static Regex UndottedNameValidator = new Regex(@"^"+NameExp+@"$",RegexOptions.Singleline | RegexOptions.Compiled );
System.Data.Entity.Design (1)
System\Data\EntityModel\Emitters\CommentEmitter.cs (1)
34private static readonly Regex LeadingBlanks = new Regex(@"^(?<LeadingBlanks>\s{1,})\S", RegexOptions.Singleline | RegexOptions.Compiled);
System.Data.Services.Design (1)
System\Data\EntityModel\Emitters\CommentEmitter.cs (1)
27private static readonly Regex LeadingBlanks = new Regex(@"^(?<LeadingBlanks>\s{1,})\S", RegexOptions.Singleline | RegexOptions.Compiled);
System.Web (3)
UI\CssStyleCollection.cs (1)
35RegexOptions.Singleline |
Util\Wildcard.cs (2)
95options = RegexOptions.RightToLeft | RegexOptions.Singleline; 97options = RegexOptions.Singleline;
System.Web.DataVisualization (1)
Common\General\ImageMap.cs (1)
499_mapAttributesRegex = new Regex(@"\s?(?<name>(\w+))\s?=\s?""(?<value>[^""]+)""\s?", RegexOptions.IgnoreCase | RegexOptions.Singleline | RegexOptions.IgnorePatternWhitespace | RegexOptions.Compiled);
System.Web.Extensions (2)
UI\ScriptRegistrationManager.cs (1)
34RegexOptions.Singleline | RegexOptions.Multiline | RegexOptions.IgnoreCase | RegexOptions.Compiled);
UI\ScriptResourceAttribute.cs (1)
34RegexOptions.Singleline | RegexOptions.Multiline);
System.Web.Mobile (4)
Mobile\MobileErrorInfo.cs (3)
303RegexOptions.Singleline | 312RegexOptions.Singleline | 319RegexOptions.Singleline |
UI\MobileControls\Design\Util\SimpleParser.cs (1)
29RegexOptions.Singleline | RegexOptions.Multiline;
System.Web.Services (1)
System\Web\Services\Protocols\PatternMatcher.cs (1)
187member.regex = new Regex(attr.Pattern, RegexOptions.Singleline | (attr.IgnoreCase ? RegexOptions.IgnoreCase | RegexOptions.CultureInvariant : 0));
System.Windows.Forms.DataVisualization (1)
Common\General\ImageMap.cs (1)
499_mapAttributesRegex = new Regex(@"\s?(?<name>(\w+))\s?=\s?""(?<value>[^""]+)""\s?", RegexOptions.IgnoreCase | RegexOptions.Singleline | RegexOptions.IgnorePatternWhitespace | RegexOptions.Compiled);