1 instantiation of CaptureCollection
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\Group.cs (1)
71public CaptureCollection Captures => _capcoll ??= new CaptureCollection(this);
20 references to CaptureCollection
Microsoft.Maui.Controls.DesignTools (1)
ColorDesignTypeConverter.cs (1)
209 var funcValues = match?.Groups?["v"]?.Captures;
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)
439CaptureCollection keyvalues = match.Groups[ValueIndex].Captures;
System.Data.Odbc (1)
src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (1)
439CaptureCollection keyvalues = match.Groups[ValueIndex].Captures;
System.Text.RegularExpressions (15)
System\Text\RegularExpressions\Capture.cs (3)
10/// through the <see cref="CaptureCollection"/> object, which is returned by the 17/// property returns a <see cref="CaptureCollection"/> with a single <see cref="Capture"/> object 21/// the <see cref="Capture"/> objects in the <see cref="CaptureCollection"/> provide information
System\Text\RegularExpressions\CaptureCollection.cs (9)
16/// The <see cref="CaptureCollection" /> object contains one or more <see cref="Capture" /> objects. 17/// Instances of the <see cref="CaptureCollection" /> class are returned by the following properties: 23/// <see cref="CaptureCollection" /> includes a single <see cref="Capture" /> object that represents 25/// capturing group, the <see cref="CaptureCollection" /> includes one <see cref="Capture" /> object 32/// <see cref="CaptureCollection" /> object provides the same information as the <see cref="Match" /> 61/// <value>The number of items in the <see cref="CaptureCollection" />.</value> 76/// <see cref="CaptureCollection" />. 270private readonly CaptureCollection _collection; 273internal Enumerator(CaptureCollection collection)
System\Text\RegularExpressions\Group.cs (3)
25internal CaptureCollection? _capcoll; 71public CaptureCollection Captures => _capcoll ??= new CaptureCollection(this); 90CaptureCollection capcoll = inner.Captures;