Class MemoryConfigurationBuilderExtensions
TendukeConfigurationBuilder extension methods for the MemoryConfigurationProvider.
public static class MemoryConfigurationBuilderExtensions
- Inheritance
-
MemoryConfigurationBuilderExtensions
- Inherited Members
Methods
AddInMemoryCollection(AsyncTendukeConfigurationBuilder, IEnumerable<KeyValuePair<string, string?>>)
Adds the memory configuration provider to configurationBuilder.
[SuppressMessage("Major Code Smell", "S4017: A nested type is a type argument that is also a generic type.", Justification = "The procedure signature should match the\n <see cref=\"Microsoft.Extensions.Configuration.MemoryConfigurationBuilderExtensions.AddInMemoryCollection\"/>\n method we are shadowing")]
public static AsyncTendukeConfigurationBuilder AddInMemoryCollection(this AsyncTendukeConfigurationBuilder configurationBuilder, IEnumerable<KeyValuePair<string, string?>> initialData)
Parameters
configurationBuilderAsyncTendukeConfigurationBuilderThe AsyncTendukeConfigurationBuilder to add to.
initialDataIEnumerable<KeyValuePair<string, string>>The data to add to memory configuration provider.
Returns
AddInMemoryCollection(TendukeConfigurationBuilder, IEnumerable<KeyValuePair<string, string?>>)
Adds the memory configuration provider to configurationBuilder.
[SuppressMessage("Major Code Smell", "S4017: A nested type is a type argument that is also a generic type.", Justification = "The procedure signature should match the\n <see cref=\"Microsoft.Extensions.Configuration.MemoryConfigurationBuilderExtensions.AddInMemoryCollection\"/>\n method we are shadowing")]
public static TendukeConfigurationBuilder AddInMemoryCollection(this TendukeConfigurationBuilder configurationBuilder, IEnumerable<KeyValuePair<string, string?>> initialData)
Parameters
configurationBuilderTendukeConfigurationBuilderThe TendukeConfigurationBuilder to add to.
initialDataIEnumerable<KeyValuePair<string, string>>The data to add to memory configuration provider.