Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 404 Bytes

File metadata and controls

11 lines (8 loc) · 404 Bytes

InMemory Store

To configure the store:

IMySettings settings = new ConfigurationBuilder<IMySettings>()
   .UseInMemory()
   .Build();

The store supports reading and writing, and stores configuration in the application memory. When application restarts all the setting values are lost. You may want to use this store for debugging or testing, other that that it has no real applications.