39 references to Captures
System (1)
regex\system\text\regularexpressions\RegexGroup.cs (1)
110capcoll = inner.Captures;
System.Data.Linq (1)
SqlClient\Query\SqlIdentifier.cs (1)
139foreach (Capture cap in m.Groups["component"].Captures)
System.ServiceModel.Activation (3)
System\ServiceModel\Activation\ServiceParser.cs (3)
464CaptureCollection attrnames = match.Groups["attrname"].Captures; 465CaptureCollection attrvalues = match.Groups["attrval"].Captures; 466CaptureCollection equalsign = match.Groups["equal"].Captures;
System.Web (11)
UI\BatchParser.cs (3)
300CaptureCollection attrnames = match.Groups["attrname"].Captures; 301CaptureCollection attrvalues = match.Groups["attrval"].Captures; 302CaptureCollection equalsign = match.Groups["equal"].Captures;
UI\CssStyleCollection.cs (2)
308CaptureCollection stylenames = match.Groups["stylename"].Captures; 309CaptureCollection stylevalues = match.Groups["styleval"].Captures;
UI\SimpleWebHandlerParser.cs (3)
259CaptureCollection attrnames = match.Groups["attrname"].Captures; 260CaptureCollection attrvalues = match.Groups["attrval"].Captures; 262equalsign = match.Groups["equal"].Captures;
UI\TemplateParser.cs (3)
2671CaptureCollection attrnames = match.Groups["attrname"].Captures; 2672CaptureCollection attrvalues = match.Groups["attrval"].Captures; 2675equalsign = match.Groups["equal"].Captures;
System.Web.DataVisualization (4)
Common\General\ImageMap.cs (4)
506for (int i = 0; i < names.Captures.Count || i < values.Captures.Count; i++) 508string name = names.Captures[i].Value.ToLowerInvariant(); 509string value = values.Captures[i].Value;
System.Web.Extensions (3)
UI\ScriptRegistrationManager.cs (3)
661if (match.Groups["empty"].Captures.Count > 0) { 685CaptureCollection attrnames = match.Groups["attrname"].Captures; 686CaptureCollection attrvalues = match.Groups["attrval"].Captures;
System.Web.Services (12)
System\Web\Services\Discovery\LinkGrep.cs (2)
90CaptureCollection attrnames = match.Groups["attrname"].Captures; 91CaptureCollection attrvalues = match.Groups["attrval"].Captures;
System\Web\Services\Protocols\PatternMatcher.cs (10)
89foreach (Capture c in g.Captures) { 102if (g.Captures.Count > 0) { 103if (g.Captures.Count <= capture) 104throw BadCaptureIndexException(capture, memberInfo.Name, g.Captures.Count - 1); 105Capture c = g.Captures[capture]; 123foreach (Capture c in g.Captures) { 136if (g.Captures.Count > 0) { 137if (g.Captures.Count <= capture) 138throw BadCaptureIndexException(capture, memberInfo.Name, g.Captures.Count - 1); 139Capture c = g.Captures[capture];
System.Windows.Forms.DataVisualization (4)
Common\General\ImageMap.cs (4)
506for (int i = 0; i < names.Captures.Count || i < values.Captures.Count; i++) 508string name = names.Captures[i].Value.ToLowerInvariant(); 509string value = values.Captures[i].Value;