1 instantiation of CaptureCollection
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\Group.cs (1)
37
public 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)
449
CaptureCollection
keyvalues = match.Groups[ValueIndex].Captures;
System.Data.Odbc (1)
src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (1)
449
CaptureCollection
keyvalues = match.Groups[ValueIndex].Captures;
System.Text.RegularExpressions (5)
System\Text\RegularExpressions\CaptureCollection.cs (2)
182
private readonly
CaptureCollection
_collection;
185
internal Enumerator(
CaptureCollection
collection)
System\Text\RegularExpressions\Group.cs (3)
17
internal
CaptureCollection
? _capcoll;
37
public
CaptureCollection
Captures => _capcoll ??= new CaptureCollection(this);
50
CaptureCollection
capcoll = inner.Captures;