3 overrides of Add
System.Configuration.ConfigurationManager (1)
System\Configuration\KeyValueInternalCollection.cs (1)
18public override void Add(string key, string value)
System.Net.Mail (1)
System\Net\Mime\HeaderCollection.cs (1)
90public override void Add(string name, string value)
System.Net.WebHeaderCollection (1)
System\Net\WebHeaderCollection.cs (1)
328public override void Add(string name, string? value)
16 references to Add
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\UrlUtility.cs (3)
545base.Add( 551base.Add(name, value); 558base.Add(null, string.Empty);
System.Collections.Specialized (2)
System\Collections\Specialized\NameValueCollection.cs (2)
174Add(key, values[j]); 178Add(key, null);
System.Configuration.ConfigurationManager (3)
System\Configuration\KeyValueInternalCollection.cs (2)
15foreach (KeyValueConfigurationElement element in _root.Settings) base.Add(element.Key, element.Value); 21base.Add(key, value);
System\Configuration\ProviderSettings.cs (1)
75_propertyNameCollection.Add(prop.Name, (string)base[prop]);
System.Net.HttpListener (3)
System\Net\HttpListenerRequest.cs (3)
580nvc.Add( 584nvc.Add(name, value); 589nvc.Add(null, "");
System.Net.Mail (1)
System\Net\Mime\HeaderCollection.cs (1)
64base.Add(name, value);
System.Net.WebHeaderCollection (3)
System\Net\WebHeaderCollection.cs (3)
324InnerCollection.Add(name, value); 336InnerCollection.Add(name, value); 344InnerCollection.Add(headerName, headerValue);
System.Web.HttpUtility (1)
System\Web\HttpUtility.cs (1)
130result.Add(name, value);