mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-15 14:19:29 +00:00
e6a06915cd
Codestyle fixes Setup CODEOWNERS Setup dependabot
13 lines
323 B
C#
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();
|
|
}
|