1 type derived from Group
System (1)
regex\system\text\regularexpressions\RegexMatch.cs (1)
47public class Match : Group {
2 instantiations of Group
System (2)
regex\system\text\regularexpressions\RegexGroup.cs (1)
26internal static Group _emptygroup = new Group(String.Empty, new int[0], 0, string.Empty);
regex\system\text\regularexpressions\RegexGroupCollection.cs (1)
151_groups[i] = new Group(_match._text, _match._matches[i + 1], _match._matchcount[i + 1], groupname);
33 references to Group
System (16)
regex\system\text\regularexpressions\RegexCaptureCollection.cs (2)
29internal Group _group; 36internal CaptureCollection(Group group) {
regex\system\text\regularexpressions\RegexGroup.cs (3)
26internal static Group _emptygroup = new Group(String.Empty, new int[0], 0, string.Empty); 98static public Group Synchronized(Group inner) {
regex\system\text\regularexpressions\RegexGroupCollection.cs (9)
33internal Group[] _groups; 97public Group this[int groupnum] 107public Group this[String groupname] { 110return Group._emptygroup; 116internal Group GetGroup(int groupnum) { 122return Group._emptygroup; 131return Group._emptygroup; 141internal Group GetGroupImpl(int groupnum) { 148_groups = new Group[_match._matchcount.Length - 1];
regex\system\text\regularexpressions\RegexMatch.cs (2)
216Group group = inner.Groups[i]; 220System.Text.RegularExpressions.Group.Synchronized(group);
System.Activities (3)
System\Activities\WorkflowIdentity.cs (3)
348Group nameMatch = this.match.Groups["name"]; 356Group versionMatch = this.match.Groups["version"]; 374Group packageMatch = match.Groups["package"];
System.Web (5)
Configuration\CapabilitiesState.cs (1)
82Group group = ((Match)_matchlist[i]).Groups[groupnum];
Handlers\AssemblyResourceLoader.cs (1)
667Group group = match.Groups["resourceName"];
UI\ControlBuilder.cs (2)
2666Group codeGroup = match.Groups["code"]; 2710Group formatStringGroup = match.Groups["formatString"];
UI\TemplateParser.cs (1)
2495Group codeGroup = match.Groups["code"];
System.Web.DataVisualization (2)
Common\General\ImageMap.cs (2)
504Group names = match.Groups["name"]; 505Group values = match.Groups["value"];
System.Web.Extensions (1)
UI\ScriptResourceAttribute.cs (1)
113Group group = match.Groups["resourceName"];
System.Web.Services (4)
System\Web\Services\Protocols\PatternMatcher.cs (4)
88Group g = m.Groups[group]; 101Group g = m.Groups[group]; 122Group g = m.Groups[group]; 135Group g = m.Groups[group];
System.Windows.Forms.DataVisualization (2)
Common\General\ImageMap.cs (2)
504Group names = match.Groups["name"]; 505Group values = match.Groups["value"];