16 references to Match
Aspire.Hosting.MySql.Tests (2)
AddMySqlTests.cs (2)
285Match match1 = Regex.Match(fileContents, pattern1); 287Match match2 = Regex.Match(fileContents, pattern2);
Aspire.Hosting.Redis.Tests (1)
AddRedisTests.cs (1)
921var match = Regex.Match(valueExpression, @"\{(cond-[^.]+)\.connectionString\}");
dotnet-Microsoft.XmlSerializer.Generator (1)
Sgen.cs (1)
629match = Regex.Match(reference, pattern);
Microsoft.Diagnostics.NETCore.Client (1)
DiagnosticsClient\DiagnosticsClient.cs (1)
453Match match = Regex.Match(fileName, PidIpcEndpoint.DiagnosticsPortPattern);
Microsoft.DotNet.Arcade.Sdk (2)
src\CheckRequiredDotNetVersion.cs (1)
82var match = Regex.Match(globalJson, $@"""dotnet""\s*:\s*""([^""]+)""");
src\LocateDotNet.cs (1)
61var match = Regex.Match(globalJson, @"""dotnet""\s*:\s*""([^""]+)""");
Microsoft.DotNet.Build.Tasks.Installers (1)
src\CreateWixBuildWixpack.cs (1)
954var eqMatch = Regex.Match(
Microsoft.TestPlatform.Filter.Source (1)
FilterExpression.cs (1)
191var invalidInput = Regex.Match(filterString, @"\(\s*\)");
Microsoft.VisualStudio.TestPlatform.Common (1)
src\vstest\src\Microsoft.TestPlatform.Filter.Source\FilterExpression.cs (1)
191var invalidInput = Regex.Match(filterString, @"\(\s*\)");
Microsoft.Win32.Msi (2)
ActionStartEventArgs.cs (1)
48Match match = Regex.Match(message, @"Action\s(?<actionTime>\d+:\d+:\d+):\s+(?<actionName>.*)\.\s+(?<actionDescription>.*)");
ProgressEventArgs.cs (1)
31Match match = Regex.Match(message, @"(?<field>\d):\s+(?<value>\d+)");
System.Text.RegularExpressions (4)
System\Text\RegularExpressions\Regex.Cache.cs (1)
23/// static <see cref="Regex"/> method calls, such as <see cref="Regex.Match(string, string)"/> or
System\Text\RegularExpressions\Regex.Match.cs (3)
27/// To retrieve matched strings, call the <see cref="Match(string, string)"/> or 291/// The static <see cref="Match(string, string)"/> method is equivalent to constructing a 530/// <see cref="Match(string, string)"/> method, except that it returns information about all the matches