1 instantiation of CaptureCollection
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\Group.cs (1)
37public CaptureCollection Captures => _capcoll ??= new CaptureCollection(this);
9 references to CaptureCollection
netstandard (1)
netstandard.cs (1)
2046[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Text.RegularExpressions.CaptureCollection))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
901[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Text.RegularExpressions.CaptureCollection))]
System.Data.Common (1)
src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (1)
449CaptureCollection keyvalues = match.Groups[ValueIndex].Captures;
System.Data.Odbc (1)
src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (1)
449CaptureCollection keyvalues = match.Groups[ValueIndex].Captures;
System.Text.RegularExpressions (5)
System\Text\RegularExpressions\CaptureCollection.cs (2)
182private readonly CaptureCollection _collection; 185internal Enumerator(CaptureCollection collection)
System\Text\RegularExpressions\Group.cs (3)
17internal CaptureCollection? _capcoll; 37public CaptureCollection Captures => _capcoll ??= new CaptureCollection(this); 50CaptureCollection capcoll = inner.Captures;