コード例 #1
0
 // ReSharper disable once SuggestBaseTypeForParameter (controllers are scoped)
 public PageController(IPageStore store, IOptionsSnapshot <WebServerOptions> options)
 {
     _store = store;
     _store.Init(Path.Combine(Constants.DefaultRootPath, $"{options.Value.PublicKeyString}_pages.egg"));
 }