1 instantiation of CaptureCollection
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\Group.cs (1)
71
public 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)
439
CaptureCollection
keyvalues = match.Groups[ValueIndex].Captures;
System.Data.Odbc (1)
src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (1)
439
CaptureCollection
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
" />.
270
private readonly
CaptureCollection
_collection;
273
internal Enumerator(
CaptureCollection
collection)
System\Text\RegularExpressions\Group.cs (3)
25
internal
CaptureCollection
? _capcoll;
71
public
CaptureCollection
Captures => _capcoll ??= new CaptureCollection(this);
90
CaptureCollection
capcoll = inner.Captures;