/// <nodoc />
 public CacheCoreArtifactContentCache(
     ICacheSession cache,
     RootTranslator rootTranslator)
 {
     m_cache          = new PossiblyOpenCacheSession(cache);
     m_rootTranslator = rootTranslator;
 }
Пример #2
0
 /// <nodoc />
 public CacheCoreArtifactContentCache(
     ICacheSession cache,
     RootTranslator rootTranslator,
     bool replaceExistingFileOnMaterialization = false)
 {
     m_cache          = new PossiblyOpenCacheSession(cache);
     m_rootTranslator = rootTranslator;
     m_replaceExistingFileOnMaterialization = replaceExistingFileOnMaterialization;
 }