21 references to Captures
Aspire.Hosting.Kubernetes (2)
KubernetesResource.cs (2)
730if (expression is not { Success: true } or not { Captures.Count: > 0 }) 746return $"{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.Build.Engine.UnitTests (2)
Evaluation\ExpressionShredder_Tests.cs (2)
614for (int i = 0; i < transformGroup.Captures.Count; i++) 616Assert.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.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)
439CaptureCollection keyvalues = match.Groups[ValueIndex].Captures; 440foreach (Capture keypair in match.Groups[KeyIndex].Captures)
System.Data.Odbc (2)
src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (2)
439CaptureCollection keyvalues = match.Groups[ValueIndex].Captures; 440foreach (Capture keypair in match.Groups[KeyIndex].Captures)
System.Text.RegularExpressions (9)
System\Text\RegularExpressions\Capture.cs (2)
11/// <see cref="Group.Captures"/> property. However, the <c>Match.Captures</c> property provides 16/// If you do not apply a quantifier to a capturing group, the <see cref="Group.Captures"/>
System\Text\RegularExpressions\CaptureCollection.cs (1)
21/// The <see cref="Group.Captures" /> property. Each member of the collection represents a substring
System\Text\RegularExpressions\Group.cs (6)
13/// <see cref="Captures"/> property. Information about the last substring captured can be accessed 15/// instance is equivalent to the last item of the collection returned by the <see cref="Captures"/> 60/// <see cref="Captures"/> property contains a single <see cref="Capture"/> object that provides 64/// The real utility of the <see cref="Captures"/> property occurs when a quantifier is applied 67/// captured substring, whereas the <see cref="Captures"/> property contains information about 90CaptureCollection capcoll = inner.Captures;
Templates.Blazor.Tests (1)
BlazorWasmTemplateTest.cs (1)
121var serviceWorkerAssetsManifestVersionJson = serviceWorkerAssetsManifestVersionMatch.Groups[1].Captures[0].Value;