3 overrides of Add
System.Diagnostics.Process (1)
System\Collections\Specialized\StringDictionaryWrapper.cs (1)
35public override void Add(string key, string? value)
System.Net.Mail (2)
System\Net\TrackingStringDictionary.cs (1)
24public override void Add(string key, string? value)
System\Net\TrackingValidationObjectDictionary.cs (1)
166public override void Add(string key, string? value)
17 references to Add
Microsoft.AspNetCore.Tests (9)
WebApplicationTests.cs (9)
1010options.StartInfo.EnvironmentVariables.Add("one", "unprefixed_one"); 1011options.StartInfo.EnvironmentVariables.Add("two", "unprefixed_two"); 1012options.StartInfo.EnvironmentVariables.Add("DOTNET_one", "DOTNET_one"); 1013options.StartInfo.EnvironmentVariables.Add("DOTNET_two", "DOTNET_two"); 1014options.StartInfo.EnvironmentVariables.Add("DOTNET_three", "DOTNET_three"); 1015options.StartInfo.EnvironmentVariables.Add("ASPNETCORE_one", "ASPNETCORE_one"); 1016options.StartInfo.EnvironmentVariables.Add("ASPNETCORE_two", "ASPNETCORE_two"); 1017options.StartInfo.EnvironmentVariables.Add("ASPNETCORE_three", "ASPNETCORE_three"); 1018options.StartInfo.EnvironmentVariables.Add("ASPNETCORE_four", "ASPNETCORE_four");
Microsoft.DotNet.SignTool (1)
src\BatchSignUtil.cs (1)
435processStartInfo.EnvironmentVariables.Add("PATH", path);
System.Configuration.ConfigurationManager (3)
System\Diagnostics\ListenerElementsCollection.cs (1)
234Attributes.Add(name, value);
System\Diagnostics\SourceElementsCollection.cs (1)
85Attributes.Add(name, value);
System\Diagnostics\SwitchElementsCollection.cs (1)
49Attributes.Add(name, value);
System.Net.Mail (4)
System\Net\Mime\ContentDisposition.cs (1)
322Parameters.Add(paramAttribute, paramValue);
System\Net\TrackingStringDictionary.cs (1)
31base.Add(key, value);
System\Net\TrackingValidationObjectDictionary.cs (2)
73base.Add(key, valueToAdd.ToString()); 85base.Add(key, value);