19 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)
614
for (int i = 0; i < transformGroup.
Captures
.Count; i++)
616
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.Maui.Controls.DesignTools (1)
ColorDesignTypeConverter.cs (1)
209
var funcValues = match?.Groups?["v"]?.
Captures
;
Microsoft.NET.Sdk.StaticWebAssets.Tests (7)
ScopedCssIntegrationTests.cs (7)
156
var counterScopeId = counterScopeMatch.Groups[1].
Captures
[0].Value;
160
var indexScopeId = indexScopeMatch.Groups[1].
Captures
[0].Value;
188
var indexScopeId = indexScopeMatch.Groups[1].
Captures
[0].Value;
192
var aboutScopeId = aboutScopeMatch.Groups[1].
Captures
[0].Value;
196
var contactScopeId = contactScopeMatch.Groups[1].
Captures
[0].Value;
225
var indexScopeId = indexScopeMatch.Groups[1].
Captures
[0].Value;
229
var counterScopeId = counterScopeMatch.Groups[1].
Captures
[0].Value;
SDDLTests (1)
Program.cs (1)
113
IEnumerable<string> aces = m.Groups.ContainsKey("DACL") ? m.Groups["DACL"].
Captures
.Select(c => c.Value.Trim('(', ')')) :
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;