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