26 references to CultureInvariant
PresentationBuildTasks (1)
BuildTasks\Microsoft\Build\Tasks\Windows\UidManager.cs (1)
1342
private static Regex EscapedXmlEntities = new Regex("(<|>|\"|'|&)", RegexOptions.
CultureInvariant
| RegexOptions.Compiled);
PresentationFramework (2)
src\Framework\MS\Internal\Globalization\BamlResourceContent.cs (1)
100
private static Regex UnescapePattern = new Regex("(\\\\.?|<|>|"|'|&)", RegexOptions.
CultureInvariant
| RegexOptions.Compiled);
src\Framework\System\Windows\Documents\WinRTSpellerInterop.cs (1)
645
RegexOptions regexOptions = RegexOptions.Singleline | RegexOptions.
CultureInvariant
| RegexOptions.Compiled;
System (12)
net\System\Net\_WebProxyDataBuilder.cs (1)
167
RegexOptions.IgnoreCase | RegexOptions.
CultureInvariant
);
net\System\Net\WebPermission.cs (1)
219
_AsRegex = new Regex(_AsString + "[/]?", RegexOptions.IgnoreCase | RegexOptions.Compiled | RegexOptions.Singleline | RegexOptions.
CultureInvariant
);
net\System\Net\webproxy.cs (1)
312
regExBypassList[i] = new Regex((string)bypassList[i], RegexOptions.IgnoreCase | RegexOptions.
CultureInvariant
);
regex\system\text\regularexpressions\Regex.cs (3)
252
RegexOptions.
CultureInvariant
263
if ((options & RegexOptions.
CultureInvariant
) != 0)
1395
return(roptions & RegexOptions.
CultureInvariant
) != 0;
regex\system\text\regularexpressions\RegexCompiler.cs (1)
977
if ((_options & RegexOptions.
CultureInvariant
) != 0)
regex\system\text\regularexpressions\RegexFCD.cs (1)
55
CultureInfo culture = ((t._options & RegexOptions.
CultureInvariant
) != 0) ? CultureInfo.InvariantCulture : CultureInfo.CurrentCulture;
regex\system\text\regularexpressions\RegexParser.cs (3)
66
p = new RegexParser((op & RegexOptions.
CultureInvariant
) != 0 ? CultureInfo.InvariantCulture : CultureInfo.CurrentCulture);
95
p = new RegexParser((op & RegexOptions.
CultureInvariant
) != 0 ? CultureInfo.InvariantCulture : CultureInfo.CurrentCulture);
1342
|| option == RegexOptions.
CultureInvariant
regex\system\text\regularexpressions\RegexWriter.cs (1)
293
CultureInfo culture = (tree._options & RegexOptions.
CultureInvariant
) != 0 ? CultureInfo.InvariantCulture : CultureInfo.CurrentCulture;
System.Data.Entity (3)
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.Web (4)
Routing\Route.cs (1)
172
RegexOptions.
CultureInvariant
| RegexOptions.IgnoreCase);
Util\Wildcard.cs (3)
102
options |= RegexOptions.IgnoreCase | RegexOptions.
CultureInvariant
;
242
options |= RegexOptions.IgnoreCase | RegexOptions.
CultureInvariant
;
269
options |= RegexOptions.IgnoreCase | RegexOptions.
CultureInvariant
;
System.Web.Mobile (3)
Mobile\MobileErrorInfo.cs (3)
305
RegexOptions.
CultureInvariant
|
314
RegexOptions.
CultureInvariant
|
321
RegexOptions.
CultureInvariant
|
System.Web.Services (1)
System\Web\Services\Protocols\PatternMatcher.cs (1)
187
member.regex = new Regex(attr.Pattern, RegexOptions.Singleline | (attr.IgnoreCase ? RegexOptions.IgnoreCase | RegexOptions.
CultureInvariant
: 0));