27 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();
cdac-build-tool (1)
ContractDescriptorSourceFileEmitter.cs (1)
94var key = match.Groups[1].Captures[0].Value;
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.DotNet.HotReload.Utils.Generator (2)
EditAndContinueCapabilitiesParser.cs (2)
18foreach (Capture c in match.Groups[1].Captures) { 21foreach (Capture c in match.Groups[2].Captures) {
Microsoft.Maui.Controls.DesignTools (1)
ColorDesignTypeConverter.cs (1)
209 var funcValues = match?.Groups?["v"]?.Captures;
Microsoft.Web.XmlTransform (4)
XmlElementContext.cs (2)
312CaptureCollection argumentCaptures = match.Groups["arguments"].Captures; 318return match.Groups["name"].Captures[0].Value;
XmlTransforms.cs (2)
547RegularExpressions.CaptureCollection attrnames = match.Groups["attrname"].Captures; 550RegularExpressions.CaptureCollection attrvalues = match.Groups["attrval"].Captures;
System.Data.Common (2)
src\runtime\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\runtime\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.OleDb (2)
DbConnectionOptions.cs (2)
792CaptureCollection keyvalues = match.Groups[ValueIndex].Captures; 793foreach (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;