Fixed issue where singleton configuration cache was blocking creation of new components
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace Toolkit.Foundation
|
||||
{
|
||||
public interface IConfigurationCache
|
||||
{
|
||||
bool Remove(string section);
|
||||
void Set<TConfiguration>(string section, TConfiguration configuration);
|
||||
bool TryGet<TConfiguration>(string section, out TConfiguration? configuration);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user