2 implementations of Set
Microsoft.Extensions.Configuration (2)
ChainedConfigurationProvider.cs (1)
52public void Set(string key, string? value) => _config[key] = value;
ConfigurationProvider.cs (1)
46public virtual void Set(string key, string? value)
5 references to Set
Microsoft.AspNetCore.Components.WebAssembly (1)
Hosting\WebAssemblyHostConfiguration.cs (1)
71provider.Set(key, value);
Microsoft.AspNetCore.Server.Kestrel.Tests (3)
KestrelConfigurationLoaderTests.cs (3)
387configProvider.Set("Endpoints:End1:Certificate:Path", otherCertificatePath); 388configProvider.Set("Endpoints:End1:Certificate:Password", "badPassword"); 397configProvider.Set("Endpoints:End1:Certificate:Password", "testPassword");
Microsoft.Extensions.Configuration (1)
ConfigurationRoot.cs (1)
138provider.Set(key, value);