6 instantiations of CheckPair
System.Web (6)
Configuration\BrowserDefinition.cs (6)
404
_idHeaderChecks.Add(new
CheckPair
("User-Agent", match, nonMatch));
426
_idHeaderChecks.Add(new
CheckPair
(header, match, nonMatch));
447
_idCapabilityChecks.Add(new
CheckPair
(header, match, nonMatch));
476
_captureHeaderChecks.Add(new
CheckPair
("User-Agent", match));
482
_captureHeaderChecks.Add(new
CheckPair
(header, match));
488
_captureCapabilityChecks.Add(new
CheckPair
(header, match));
12 references to CheckPair
System.Web (12)
Configuration\BrowserCapabilitiesCodeGenerator.cs (12)
1167
string matchedString = ((
CheckPair
)bd.IdHeaderChecks[i]).MatchString;
1182
if (((
CheckPair
)bd.IdHeaderChecks[i]).Header.Equals("User-Agent")) {
1194
string header = ((
CheckPair
)bd.IdHeaderChecks[i]).Header;
1237
if(((
CheckPair
)bd.IdHeaderChecks[i]).NonMatch) {
1251
string matchedString = ((
CheckPair
)bd.IdCapabilityChecks[i]).MatchString;
1269
new CodePrimitiveExpression(((
CheckPair
)bd.IdCapabilityChecks[i]).Header)
1298
if (((
CheckPair
)bd.IdCapabilityChecks[i]).NonMatch) {
1332
string matchedString = ((
CheckPair
)bd.CaptureHeaderChecks[i]).MatchString;
1340
if (((
CheckPair
)bd.CaptureHeaderChecks[i]).Header.Equals("User-Agent")) {
1347
string header = ((
CheckPair
)bd.CaptureHeaderChecks[i]).Header;
1370
string matchedString = ((
CheckPair
)bd.CaptureCapabilityChecks[i]).MatchString;
1382
new CodeExpression[] { new CodePrimitiveExpression(((
CheckPair
)bd.CaptureCapabilityChecks[i]).Header) }