11 references to Captures
Aspire.Hosting.Kubernetes (2)
KubernetesResource.cs (2)
624if (expression is not { Success: true } or not { Captures.Count: > 0 }) 640return $"{expression.Captures[0].Value.Trim()}{typeConversion}".ToHelmExpression();
Microsoft.AspNetCore.App.Analyzers (1)
RouteEmbeddedLanguage\Infrastructure\EmbeddedLanguageCommentDetector.cs (1)
48options = optionGroup.Captures.OfType<Capture>().Select(c => c.Value);
Microsoft.CodeAnalysis.Features (1)
EmbeddedLanguages\EmbeddedLanguageCommentDetector.cs (1)
47options = optionGroup.Captures.Select(c => c.Value);
Microsoft.Maui.Controls.DesignTools (1)
ColorDesignTypeConverter.cs (1)
209 var funcValues = match?.Groups?["v"]?.Captures;
System.Data.Common (2)
src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (2)
442CaptureCollection keyvalues = match.Groups[ValueIndex].Captures; 443foreach (Capture keypair in match.Groups[KeyIndex].Captures)
System.Data.Odbc (2)
src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (2)
442CaptureCollection keyvalues = match.Groups[ValueIndex].Captures; 443foreach (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;