Files
SystemExtensions/SystemExtensions.NetStandard.DependencyInjection/Configuration/IUpdateableOptions.cs
T
amacocian e6a06915cd Improve IHttpClient factories (#20)
Codestyle fixes
Setup CODEOWNERS
Setup dependabot
2022-09-06 15:49:07 +02:00

13 lines
323 B
C#

using Microsoft.Extensions.Options;
namespace System.Configuration;
public interface IUpdateableOptions<out T> : IOptions<T>
where T : class
{
/// <summary>
/// Updates the configuration with the current value stored in <see cref="IOptions{TOptions}.Value"/>.
/// </summary>
void UpdateOption();
}