11 references to Captures
Microsoft.AspNetCore.App.Analyzers (1)
RouteEmbeddedLanguage\Infrastructure\EmbeddedLanguageCommentDetector.cs (1)
48
options = optionGroup.
Captures
.OfType<Capture>().Select(c => c.Value);
Microsoft.Build.Engine.UnitTests (2)
Evaluation\ExpressionShredder_Tests.cs (2)
616
for (int i = 0; i < transformGroup.
Captures
.Count; i++)
618
Assert.Equal(transformGroup.
Captures
[i].Value, capture.Captures[i].Value);
Microsoft.CodeAnalysis.Features (1)
EmbeddedLanguages\EmbeddedLanguageCommentDetector.cs (1)
47
options = optionGroup.
Captures
.Select(c => c.Value);
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1)
CodeGen\CodeGenVBCore.vb (1)
3210
Dim captures = matches(matches.Count - 1).Groups(1).
Captures
System.Data.Common (2)
src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (2)
449
CaptureCollection keyvalues = match.Groups[ValueIndex].
Captures
;
450
foreach (Capture keypair in match.Groups[KeyIndex].
Captures
)
System.Data.Odbc (2)
src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (2)
449
CaptureCollection keyvalues = match.Groups[ValueIndex].
Captures
;
450
foreach (Capture keypair in match.Groups[KeyIndex].
Captures
)
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\Group.cs (1)
50
CaptureCollection capcoll = inner.
Captures
;
Templates.Blazor.Tests (1)
BlazorWasmTemplateTest.cs (1)
121
var serviceWorkerAssetsManifestVersionJson = serviceWorkerAssetsManifestVersionMatch.Groups[1].
Captures
[0].Value;