11 references to ExplicitCapture
PresentationFramework (1)
src\Framework\MS\Internal\AppModel\DeploymentExceptionMapper.cs (1)
84RegexOptions.ExplicitCapture|RegexOptions.IgnoreCase);
System (2)
regex\system\text\regularexpressions\RegexParser.cs (2)
1490return RegexOptions.ExplicitCapture; 1756return(_options & RegexOptions.ExplicitCapture) != 0;
System.ComponentModel.DataAnnotations (3)
DataAnnotations\EmailAddressAttribute.cs (1)
55const RegexOptions options = RegexOptions.Compiled | RegexOptions.IgnoreCase | RegexOptions.ExplicitCapture;
DataAnnotations\PhoneAttribute.cs (1)
70const RegexOptions options = RegexOptions.Compiled | RegexOptions.IgnoreCase | RegexOptions.ExplicitCapture;
DataAnnotations\UrlAttribute.cs (1)
48const RegexOptions options = RegexOptions.Compiled | RegexOptions.IgnoreCase | RegexOptions.ExplicitCapture;
System.Data (3)
fx\src\data\System\Data\Common\DBCommandBuilder.cs (1)
51_parameterNameParser = new Regex(_dbCommandBuilder.ParameterNamePattern, RegexOptions.ExplicitCapture | RegexOptions.Singleline);
fx\src\data\System\Data\Common\DbConnectionOptions.cs (1)
92private static readonly Regex ConnectionStringQuoteOdbcValueRegex = new Regex(ConnectionStringQuoteOdbcValuePattern, RegexOptions.ExplicitCapture | RegexOptions.Compiled);
fx\src\data\System\Data\SqlClient\SqlCommandSet.cs (1)
24private static readonly Regex SqlIdentifierParser = new Regex(SqlIdentifierPattern, RegexOptions.ExplicitCapture|RegexOptions.Singleline);
System.Web (2)
Configuration\RegexWorker.cs (1)
92Regex regex = RegexUtil.CreateRegex(regexExpression, RegexOptions.ExplicitCapture);
UI\CssStyleCollection.cs (1)
37RegexOptions.ExplicitCapture);