Implemented interface member:
288 references to
Aspire.EndToEnd.Tests (3)
tests\Shared\WorkloadTesting\AspireProject.cs (3)
124if (matches[0].Groups["tfm"].Value != tfmToUseString) 126throw new XunitException($"Expected to find {tfmToUseString} but found '{matches[0].Groups["tfm"].Value}' in {csprojPath}: {csprojContent}"); 197DashboardUrl = m.Groups["url"].Value;
Aspire.Hosting (1)
Dashboard\DashboardService.cs (1)
48Match { Success: true } match => match.Groups["name"].Value,
Aspire.Workload.Tests (3)
tests\Shared\WorkloadTesting\AspireProject.cs (3)
124if (matches[0].Groups["tfm"].Value != tfmToUseString) 126throw new XunitException($"Expected to find {tfmToUseString} but found '{matches[0].Groups["tfm"].Value}' in {csprojPath}: {csprojContent}"); 197DashboardUrl = m.Groups["url"].Value;
dotnet-svcutil-lib (4)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SourceInfo.cs (4)
69object varA = ILG.GetVariable(match.Groups["a"].Value); 71object varIA = ILG.GetVariable(match.Groups["ia"].Value); 192Debug.Assert(match.Groups["arg"].Value == Arg); 193Debug.Assert(match.Groups["cast"].Value == CodeIdentifier.GetCSharpName(Type));
installer.tasks (1)
StaticFileRegeneration\TpnSectionHeader.cs (1)
162Name = numberListMatch.Groups["name"].Value,
InteropTests (1)
Helpers\WebsiteProcess.cs (1)
72ServerPort = m.Groups["port"].Value;
Microsoft.AspNetCore.App.Analyzers (2)
RouteEmbeddedLanguage\Infrastructure\EmbeddedLanguageCommentDetector.cs (2)
46identifier = match.Groups["identifier"].Value; 47var optionGroup = match.Groups["option"];
Microsoft.AspNetCore.Components.Endpoints.Tests (21)
EndpointHtmlRendererTest.cs (21)
87var preamble = match.Groups["preamble"].Value; 94var prerenderedContent = match.Groups["content"].Value; 97var epilogue = match.Groups["epilogue"].Value; 202var preamble = match.Groups["preamble"].Value; 218var prerenderedContent = match.Groups["content"].Value; 221var epilogue = match.Groups["epilogue"].Value; 251var preamble = match.Groups["preamble"].Value; 266var prerenderedContent = match.Groups["content"].Value; 269var epilogue = match.Groups["epilogue"].Value; 342var preamble = match.Groups["preamble"].Value; 357var prerenderedContent = match.Groups["content"].Value; 360var epilogue = match.Groups["epilogue"].Value; 407var preamble = firstMatch.Groups["preamble"].Value; 539var preamble = match.Groups["preamble"].Value; 563var prerenderedContent = match.Groups["content"].Value; 566var epilogue = match.Groups["epilogue"].Value; 590var preamble = match.Groups["preamble"].Value; 614var prerenderedContent = match.Groups["content"].Value; 617var epilogue = match.Groups["epilogue"].Value; 1172var preamble = match.Groups["preamble"].Value; 1177var prerenderedContent = match.Groups["content"].Value;
Microsoft.AspNetCore.Components.WebAssembly.Server (2)
DebugProxyLauncher.cs (2)
219capturedUrl = matchFirefox.Groups["url"].Value; 226capturedUrl = match.Groups["url"].Value;
Microsoft.AspNetCore.DataProtection.Tests (5)
AuthenticatedEncryption\ConfigurationModel\AuthenticatedEncryptorDescriptorTests.cs (5)
32int keyLengthInBits = Int32.Parse(Regex.Match(encryptionAlgorithm.ToString(), @"^AES_(?<keyLength>\d{3})_CBC$").Groups["keyLength"].Value, CultureInfo.InvariantCulture); 33string hashAlgorithm = Regex.Match(validationAlgorithm.ToString(), @"^HMAC(?<hashAlgorithm>.*)$").Groups["hashAlgorithm"].Value; 60int keyLengthInBits = Int32.Parse(Regex.Match(encryptionAlgorithm.ToString(), @"^AES_(?<keyLength>\d{3})_GCM$").Groups["keyLength"].Value, CultureInfo.InvariantCulture); 86int keyLengthInBits = Int32.Parse(Regex.Match(encryptionAlgorithm.ToString(), @"^AES_(?<keyLength>\d{3})_GCM$").Groups["keyLength"].Value, CultureInfo.InvariantCulture); 123int keyLengthInBits = Int32.Parse(Regex.Match(encryptionAlgorithm.ToString(), @"^AES_(?<keyLength>\d{3})_CBC$").Groups["keyLength"].Value, CultureInfo.InvariantCulture);
Microsoft.AspNetCore.Grpc.JsonTranscoding (6)
src\Grpc\JsonTranscoding\src\Shared\Legacy.cs (6)
69var dateTime = match.Groups["datetime"].Value; 70var subseconds = match.Groups["subseconds"].Value; 71var offset = match.Groups["offset"].Value; 184var sign = match.Groups["sign"].Value; 185var secondsText = match.Groups["int"].Value; 191var subseconds = match.Groups["subseconds"].Value;
Microsoft.AspNetCore.Grpc.Swagger (6)
src\Grpc\JsonTranscoding\src\Shared\Legacy.cs (6)
69var dateTime = match.Groups["datetime"].Value; 70var subseconds = match.Groups["subseconds"].Value; 71var offset = match.Groups["offset"].Value; 184var sign = match.Groups["sign"].Value; 185var secondsText = match.Groups["int"].Value; 191var subseconds = match.Groups["subseconds"].Value;
Microsoft.AspNetCore.Server.IntegrationTesting (1)
Deployers\SelfHostDeployer.cs (1)
158actualUrl = new Uri(m.Groups["url"].Value);
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (1)
IISExpressDeployer.cs (1)
214url = new Uri(m.Groups["url"].Value);
Microsoft.Build (47)
CanonicalError.cs (24)
301category = match.Groups["CATEGORY"].Value.Trim(); 315parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 316parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 317parsedMessage.text = (match.Groups["TEXT"].Value + messageOverflow).Trim(); 318parsedMessage.origin = match.Groups["FILENAME"].Value.Trim(); 333string origin = match.Groups["ORIGIN"].Value.Trim(); 334category = match.Groups["CATEGORY"].Value.Trim(); 335parsedMessage.code = match.Groups["CODE"].Value.Trim(); 336parsedMessage.text = (match.Groups["TEXT"].Value + messageOverflow).Trim(); 337parsedMessage.subcategory = match.Groups["SUBCATEGORY"].Value.Trim(); 363string location = match.Groups["LOCATION"].Value.Trim(); 364parsedMessage.origin = match.Groups["FILENAME"].Value.Trim(); 379parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 386parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 387parsedMessage.endLine = ConvertToIntWithDefault(match.Groups["ENDLINE"].Value.Trim()); 394parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 395parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 402parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 403parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 404parsedMessage.endColumn = ConvertToIntWithDefault(match.Groups["ENDCOLUMN"].Value.Trim()); 411parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 412parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 413parsedMessage.endLine = ConvertToIntWithDefault(match.Groups["ENDLINE"].Value.Trim()); 414parsedMessage.endColumn = ConvertToIntWithDefault(match.Groups["ENDCOLUMN"].Value.Trim());
Construction\Solution\SolutionFile.cs (9)
1059string referenceGuid = match.Groups["PROPERTYNAME"].Value.Trim(); 1077string propertyName = match.Groups["PROPERTYNAME"].Value.Trim(); 1078string propertyValue = match.Groups["PROPERTYVALUE"].Value.Trim(); 1509string projectTypeGuid = match.Groups["PROJECTTYPEGUID"].Value.Trim(); 1510proj.ProjectName = match.Groups["PROJECTNAME"].Value.Trim(); 1511proj.RelativePath = match.Groups["RELATIVEPATH"].Value.Trim(); 1512proj.ProjectGuid = match.Groups["PROJECTGUID"].Value.Trim(); 1609string projectGuid = match.Groups["PROPERTYNAME"].Value.Trim(); 1610string parentProjectGuid = match.Groups["PROPERTYVALUE"].Value.Trim();
DebugUtils.cs (1)
78var nodeMode = match.Groups["nodemode"].Value;
Evaluation\Expander.cs (5)
1079string metadataName = itemMetadataMatch.Groups[RegularExpressions.NameGroup].Value; 1083if (itemMetadataMatch.Groups[RegularExpressions.ItemSpecificationGroup].Length > 0) 1085itemType = itemMetadataMatch.Groups[RegularExpressions.ItemTypeGroup].Value; 3053string name = match.Groups[RegularExpressions.NameGroup].Value; 3055ProjectErrorUtilities.VerifyThrowInvalidProject(match.Groups[RegularExpressions.ItemSpecificationGroup].Length == 0, _elementLocation, "QualifiedMetadataInTransformNotAllowed", match.Value, name);
FileMatcher.cs (2)
1872wildcardDirectoryPart = match.Groups["WILDCARDDIR"].Value; 1873filenamePart = match.Groups["FILENAME"].Value;
ProjectWriter.cs (6)
158base.WriteString(itemVectorTransform.Groups["PREFIX"].Value); 159base.WriteString(itemVectorTransform.Groups["TYPE"].Value); 160base.WriteRaw(itemVectorTransform.Groups["ARROW"].Value); 161base.WriteString(itemVectorTransform.Groups["TRANSFORM"].Value); 162base.WriteString(itemVectorTransform.Groups["SEPARATOR_SPECIFICATION"].Value); 163base.WriteString(itemVectorTransform.Groups["SUFFIX"].Value);
Microsoft.Build.Engine.OM.UnitTests (1)
DebugUtils.cs (1)
78var nodeMode = match.Groups["nodemode"].Value;
Microsoft.Build.Engine.UnitTests (5)
Evaluation\ExpressionShredder_Tests.cs (5)
612Group transformGroup = match.Groups["TRANSFORM"]; 1128result.Add(itemVector.Groups["TYPE"].Value); 1171string metadataName = embeddedMetadataReference.Groups["NAME"].Value; 1176if (embeddedMetadataReference.Groups["ITEM_SPECIFICATION"].Length > 0) 1178itemName = embeddedMetadataReference.Groups["TYPE"].Value;
Microsoft.Build.Tasks.CodeAnalysis (19)
CanonicalError.cs (19)
308string origin = match.Groups["ORIGIN"].Value.Trim(); 309string category = match.Groups["CATEGORY"].Value.Trim(); 310parsedMessage.code = match.Groups["CODE"].Value.Trim(); 311parsedMessage.text = (match.Groups["TEXT"].Value + messageOverflow).Trim(); 312parsedMessage.subcategory = match.Groups["SUBCATEGORY"].Value.Trim(); 338string location = match.Groups["LOCATION"].Value.Trim(); 339parsedMessage.origin = match.Groups["FILENAME"].Value.Trim(); 354parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 361parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 362parsedMessage.endLine = ConvertToIntWithDefault(match.Groups["ENDLINE"].Value.Trim()); 369parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 370parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 377parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 378parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 379parsedMessage.endColumn = ConvertToIntWithDefault(match.Groups["ENDCOLUMN"].Value.Trim()); 386parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 387parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 388parsedMessage.endLine = ConvertToIntWithDefault(match.Groups["ENDLINE"].Value.Trim()); 389parsedMessage.endColumn = ConvertToIntWithDefault(match.Groups["ENDCOLUMN"].Value.Trim());
Microsoft.Build.Tasks.Core (33)
AssemblyDependency\AssemblyFoldersFromConfig\AssemblyFoldersFromConfigResolver.cs (2)
105_targetRuntimeVersion = match.Groups["TARGETRUNTIMEVERSION"].Value.Trim(); 106_assemblyFolderConfigFile = match.Groups["ASSEMBLYFOLDERCONFIGFILE"].Value.Trim();
CanonicalError.cs (24)
301category = match.Groups["CATEGORY"].Value.Trim(); 315parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 316parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 317parsedMessage.text = (match.Groups["TEXT"].Value + messageOverflow).Trim(); 318parsedMessage.origin = match.Groups["FILENAME"].Value.Trim(); 333string origin = match.Groups["ORIGIN"].Value.Trim(); 334category = match.Groups["CATEGORY"].Value.Trim(); 335parsedMessage.code = match.Groups["CODE"].Value.Trim(); 336parsedMessage.text = (match.Groups["TEXT"].Value + messageOverflow).Trim(); 337parsedMessage.subcategory = match.Groups["SUBCATEGORY"].Value.Trim(); 363string location = match.Groups["LOCATION"].Value.Trim(); 364parsedMessage.origin = match.Groups["FILENAME"].Value.Trim(); 379parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 386parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 387parsedMessage.endLine = ConvertToIntWithDefault(match.Groups["ENDLINE"].Value.Trim()); 394parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 395parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 402parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 403parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 404parsedMessage.endColumn = ConvertToIntWithDefault(match.Groups["ENDCOLUMN"].Value.Trim()); 411parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 412parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 413parsedMessage.endLine = ConvertToIntWithDefault(match.Groups["ENDLINE"].Value.Trim()); 414parsedMessage.endColumn = ConvertToIntWithDefault(match.Groups["ENDCOLUMN"].Value.Trim());
DebugUtils.cs (1)
78var nodeMode = match.Groups["nodemode"].Value;
FileMatcher.cs (2)
1872wildcardDirectoryPart = match.Groups["WILDCARDDIR"].Value; 1873filenamePart = match.Groups["FILENAME"].Value;
FindInvalidProjectReferences.cs (2)
123platformIdentity = match.Groups[PlatformSimpleNameGroup].Value.Trim(); 125string rawVersion = match.Groups[PlatformVersionGroup].Value.Trim();
ResolveSDKReference.cs (2)
585sdkSimpleName = match.Groups[SDKsimpleNameGroup].Value.Trim(); 587rawSdkVersion = match.Groups[SDKVersionGroup].Value.Trim();
Microsoft.Build.Utilities.Core (27)
CanonicalError.cs (24)
301category = match.Groups["CATEGORY"].Value.Trim(); 315parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 316parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 317parsedMessage.text = (match.Groups["TEXT"].Value + messageOverflow).Trim(); 318parsedMessage.origin = match.Groups["FILENAME"].Value.Trim(); 333string origin = match.Groups["ORIGIN"].Value.Trim(); 334category = match.Groups["CATEGORY"].Value.Trim(); 335parsedMessage.code = match.Groups["CODE"].Value.Trim(); 336parsedMessage.text = (match.Groups["TEXT"].Value + messageOverflow).Trim(); 337parsedMessage.subcategory = match.Groups["SUBCATEGORY"].Value.Trim(); 363string location = match.Groups["LOCATION"].Value.Trim(); 364parsedMessage.origin = match.Groups["FILENAME"].Value.Trim(); 379parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 386parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 387parsedMessage.endLine = ConvertToIntWithDefault(match.Groups["ENDLINE"].Value.Trim()); 394parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 395parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 402parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 403parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 404parsedMessage.endColumn = ConvertToIntWithDefault(match.Groups["ENDCOLUMN"].Value.Trim()); 411parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 412parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 413parsedMessage.endLine = ConvertToIntWithDefault(match.Groups["ENDLINE"].Value.Trim()); 414parsedMessage.endColumn = ConvertToIntWithDefault(match.Groups["ENDCOLUMN"].Value.Trim());
DebugUtils.cs (1)
78var nodeMode = match.Groups["nodemode"].Value;
FileMatcher.cs (2)
1872wildcardDirectoryPart = match.Groups["WILDCARDDIR"].Value; 1873filenamePart = match.Groups["FILENAME"].Value;
Microsoft.CodeAnalysis.EditorFeatures (1)
EditorConfigSettings\DataProvider\SettingsProviderBase.cs (1)
144if (match.Success && match.Groups["key"].Value is string isolatedKey &&
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (2)
Semantics\SpeculationAnalyzerTestsBase.cs (2)
33var initialExpression = initialMatch.Groups["content"].Value; 35var initialTree = Parse(UnderTestRegex.Replace(code, m => m.Groups["content"].Value));
Microsoft.CodeAnalysis.Features (2)
EmbeddedLanguages\EmbeddedLanguageCommentDetector.cs (2)
43identifier = match.Groups["identifier"].Value; 45var optionGroup = match.Groups["option"];
Microsoft.CodeAnalysis.Features.Test.Utilities (8)
EditAndContinue\SourceMarkers.cs (8)
41=> from ids in match.Groups["Id"].Value.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries) 52if (match.Groups["Name"].Value != tagName) 57var isStartingTag = match.Groups["IsEnd"].Value == "" || match.Groups["IsStartAndEnd"].Value != ""; 58var isEndingTag = match.Groups["IsEnd"].Value != "" || match.Groups["IsStartAndEnd"].Value != ""; 100var span = matches[i].Groups["TrackingStatement"]; 121var exceptionRegion = matches[i].Groups["ExceptionRegion"];
Microsoft.CodeAnalysis.Test.Utilities (5)
MarkedSource\SourceWithMarkedNodes.cs (5)
56var tagName = match.Groups["TagName"]; 57var markedSyntax = match.Groups["MarkedSyntax"]; 58var syntaxKindOpt = match.Groups["SyntaxKind"].Value; 59var idOpt = match.Groups["Id"].Value; 61var parentIdOpt = match.Groups["ParentId"].Value;
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\Solution\ProjectInfo.cs (2)
513return match.Success ? (match.Groups["name"].Value, match.Groups["flavor"].Value) : default;
Microsoft.DotNet.Build.Tasks.Feed (12)
src\BlobFeedAction.cs (5)
46AccountName = m.Groups["accountname"].Value; 47ContainerName = m.Groups["containername"].Value; 48RelativePath = m.Groups["relativepath"].Value; 50feedUrl = m.Groups["feedurl"].Value; 51hasToken = !string.IsNullOrEmpty(m.Groups["token"].Value);
src\BlobUrlInfo.cs (4)
44AccountName = hostNameMatch.Groups["accountname"].Value; 45Endpoint = hostNameMatch.Groups["endpoint"].Value; 57ContainerName = containerAndBlobMatch.Groups["containername"].Value; 58BlobPath = containerAndBlobMatch.Groups["blobpath"].Value;
src\BuildModelFactory.cs (1)
287string replacementUri = $"{Regex.Unescape(AzureDevOpsHostPattern)}/{m.Groups["account"].Value}";
src\common\AzureConnectionStringBuildTask.cs (2)
45AccountName = matches[0].Groups["name"].Value; 46AccountKey = matches[0].Groups["key"].Value;
Microsoft.DotNet.Build.Tasks.Feed.Tests (3)
PublishArtifactsInManifestTests.cs (3)
67matches.Groups["account"]?.Value.Should().Be(account); 68matches.Groups["visibility"]?.Value.Should().Be(visibility); 69matches.Groups["feed"]?.Value.Should().Be(feed);
Microsoft.DotNet.Git.IssueManager (5)
Clients\AzureDevOpsClient.cs (3)
81return (m.Groups["account"].Value, 82m.Groups["project"].Value, 83m.Groups["repo"].Value);
Clients\GitHubClient.cs (2)
109return (match.Groups["owner"].Value, match.Groups["repo"].Value);
Microsoft.DotNet.VersionTools (1)
Dependencies\FileRegexUpdater.cs (1)
76Group group = m.Groups[groupName];
Microsoft.DotNet.VersionTools.Tasks (1)
UpdateToRemoteDependencies.cs (1)
111Group g = match.Groups[valueGroup];
Microsoft.ML.Data (8)
Commands\EvaluateCommand.cs (1)
83var s = match.Groups[_groupName];
EntryPoints\EntryPointNode.cs (7)
1078if (match.Groups["NumericAccessor"].Success) 1081match.Groups["Name"].Value, 1082int.Parse(match.Groups["NumericAccessor"].Value)); 1085if (match.Groups["StringAccessor"].Success) 1088match.Groups["Name"].Value, 1089match.Groups["StringAccessor"].Value); 1092return new SimpleVariableBinding(match.Groups["Name"].Value);
Microsoft.ML.ResultProcessor (11)
ResultProcessor.cs (11)
612timeElapsed = mc.Groups["timeElapsed"].Value; 613executionDate = mc.Groups["executionDate"].Value; 621if (mc.Groups["memoryType"].Value == "Virtual") 622virtualMemory = mc.Groups["memoryUsage"].Value; 623else if (mc.Groups["memoryType"].Value == "Physical") 624physicalMemory = mc.Groups["memoryUsage"].Value; 798string name = matchNameValueDeviation.Groups["name"].Value; 799Double doubleValue = Double.Parse(matchNameValueDeviation.Groups["value"].Value, CultureInfo.InvariantCulture); 801float deviation = (float)Double.Parse(matchNameValueDeviation.Groups["deviation"].Value, CultureInfo.InvariantCulture); 818string name = matchNameValue.Groups["name"].Value; 819float value = float.Parse(matchNameValue.Groups["value"].Value, CultureInfo.InvariantCulture);
MSBuild (1)
DebugUtils.cs (1)
78var nodeMode = match.Groups["nodemode"].Value;
SemanticSearch.BuildTask (3)
GenerateFilteredReferenceAssembliesTask.cs (3)
136var inclusion = match.Groups["Inclusion"].Value; 137var kinds = match.Groups["Kinds"].Value; 138var metadataName = match.Groups["MetadataName"].Value;
System.Private.Xml (24)
System\Xml\Serialization\SourceInfo.cs (4)
75object varA = ILG.GetVariable(match.Groups["a"].Value); 77object varIA = ILG.GetVariable(match.Groups["ia"].Value); 196Debug.Assert(match.Groups["arg"].Value == Arg); 197Debug.Assert(match.Groups["cast"].Value == CodeIdentifier.GetCSharpName(Type!));
System\Xml\Serialization\XmlSerializationReaderILGen.cs (20)
2739Debug.Assert(match.Groups["locA1"].Value == match.Groups["locA2"].Value); 2740Debug.Assert(match.Groups["locA1"].Value == match.Groups["locA3"].Value); 2741Debug.Assert(match.Groups["locI1"].Value == match.Groups["locI2"].Value); 2743LocalBuilder localA = ilg.GetLocal(match.Groups["locA1"].Value); 2744LocalBuilder localI = ilg.GetLocal(match.Groups["locI1"].Value); 2785System.Diagnostics.Debug.Assert(CodeGenerator.GetVariableType(ilg.GetVariable(match.Groups["a"].Value)).IsArray); 2786ilg.Load(ilg.GetVariable(match.Groups["a"].Value)); 2787ilg.Load(ilg.GetVariable(match.Groups["ia"].Value)); 2831object oVar = ilg.GetVariable(match.Groups["locA1"].Value); 2867Type varType = CodeGenerator.GetVariableType(ilg.GetVariable(match.Groups["a"].Value)); 3563ilg.Ldstr(match.Groups["qnames"].Value); 3572LocalBuilder localO = ilg.GetLocal(match.Groups["o"].Value); 3575ilg.Ldstr(match.Groups["qnames"].Value); 3584LocalBuilder localO = ilg.GetLocal(match.Groups["o"].Value); 3596LocalBuilder localO = ilg.GetLocal(match.Groups["o"].Value); 3610ilg.Ldc(int.Parse(match.Groups["index"].Value, CultureInfo.InvariantCulture)); 3623ilg.Ldc(int.Parse(match.Groups["index"].Value, CultureInfo.InvariantCulture));
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\GroupCollection.cs (1)
199Group group = this[key];
TaskUsageLogger (1)
TaskUsageLogger.cs (1)
315string propertyName = match.Groups["name"].Value.Trim();
VersioningWebSite (3)
VersionRouteAttribute.cs (3)
59var lowerBound = match.Groups["lb"].Value; 60var higherBound = match.Groups["hb"].Value; 61var range = match.Groups["range"].Value;
XmlFileLogger (2)
XmlFileLogger.cs (2)
139_build.SetTaskAssembly(match.Groups["task"].Value, match.Groups["assembly"].Value);
xunit.assert (3)
Sdk\Exceptions\ExceptionUtility.cs (3)
75 var file = match.Groups["file"].Value; 76 return string.Format(CultureInfo.InvariantCulture, "{0}{1}({2},0): at {3}", indent, file, match.Groups["line"].Value, match.Groups["method"].Value);