Microsoft.Extensions.DependencyInjection.DelegatingOptionsFactoryServiceCollectionExtensions
namespace Microsoft.Extensions.DependencyInjection
{
internal static class DelegatingOptionsFactoryServiceCollectionExtensions
{
public static IServiceCollection RegisterOptionsFactory<T>(this IServiceCollection services, Func<IConfiguration, T> optionsFactoryFunc) where T : class;
public static IServiceCollection RegisterOptionsFactory<T>(this IServiceCollection services, Func<IServiceProvider, IConfiguration, string, T> optionsFactoryFunc) where T : class;
public static IServiceCollection DisableOptionsReloading<T>(this IServiceCollection services) where T : class;
}
}