15 references to NextMatch
aspire (1)
src\Shared\ConsoleLogs\UrlParser.cs (1)
39urlMatch = urlMatch.NextMatch();
Aspire.Dashboard (1)
src\Shared\ConsoleLogs\UrlParser.cs (1)
39urlMatch = urlMatch.NextMatch();
Microsoft.Build (3)
Evaluation\Expander.cs (3)
3035Match nextMatch = match.NextMatch(); 3618match = match.NextMatch(); 3644match = match.NextMatch();
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (2)
Compilation\SemanticModelAPITests.cs (2)
4060for (var match = System.Text.RegularExpressions.Regex.Match(source, " => x"); match.Success; match = match.NextMatch()) 4088for (var match = System.Text.RegularExpressions.Regex.Match(source, " => x"); match.Success; match = match.NextMatch())
System.Text.RegularExpressions (7)
System\Text\RegularExpressions\Capture.cs (1)
50/// If a call to the <see cref="Regex.Match(string)"/> or <see cref="Match.NextMatch"/> method fails to
System\Text\RegularExpressions\Match.cs (1)
15/// <see cref="Match"/> objects returned by the <see cref="Match.NextMatch"/> method. In addition, a
System\Text\RegularExpressions\Regex.Match.cs (5)
303/// <see cref="Match.NextMatch"/> method. You can also retrieve all matches in a single method call by 336/// <see cref="Match.NextMatch"/> method. You can also retrieve all matches in a single method call by 374/// <see cref="Match.NextMatch"/> method. 409/// returned <see cref="System.Text.RegularExpressions.Match"/> object's <see cref="Match.NextMatch"/> method. You can also retrieve all 501/// repeatedly calling the returned <see cref="System.Text.RegularExpressions.Match"/> object's <see cref="Match.NextMatch"/> method.
TaskUsageLogger (1)
TaskUsageLogger.cs (1)
313for (var match = s_msbuildPropertyRegex.Match(unevaluatedString); match.Success; match = match.NextMatch())