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