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