Inheritance: ICacheConfiguration
Exemple #1
0
 public HostConfig()
 {
     Runtime = new HostRuntimeConfiguration();
     Caching = new CacheConfigurationSection();
     Database = new DatabaseProviderCollection();
     Certificate = new CertificateProviderCollection();
 }
Exemple #2
0
 public ClientConfig()
 {
     Runtime = new ClientRuntimeConfiguration();
     Caching = new CacheConfigurationSection
     {
         Enabled = true,
         ProviderType = typeof (InMemoryCacheStore).AssemblyQualifiedName
     };
 }