Esempio n. 1
0
 internal RazorEngineCore(ReadOnlyTemplateServiceConfiguration config, RazorEngineService cached)
 {
     if (config == null)
     {
         throw new ArgumentNullException("config");
     }
     
     _config = config;
     _cached = cached;
 }
Esempio n. 2
0
        internal RazorEngineCore(ReadOnlyTemplateServiceConfiguration config, RazorEngineService cached)
        {
            if (config == null)
            {
                throw new ArgumentNullException("config");
            }

            _config = config;
            _cached = cached;
        }
Esempio n. 3
0
 internal RazorEngineCore(ReadOnlyTemplateServiceConfiguration config, RazorEngineService cached)
 {
     if (config == null)
     {
         throw new ArgumentNullException("config");
     }
     
     _config = config;
     _cached = cached;
     AppDomain.CurrentDomain.AssemblyResolve += AssemblyResolve;
 }
Esempio n. 4
0
        internal RazorEngineCore(ReadOnlyTemplateServiceConfiguration config, RazorEngineService cached)
        {
            if (config == null)
            {
                throw new ArgumentNullException("config");
            }

            _config = config;
            _cached = cached;
            AppDomain.CurrentDomain.AssemblyResolve += AssemblyResolve;
        }
 internal RazorEngineCoreWithCache(ReadOnlyTemplateServiceConfiguration config, RazorEngineService cached)
     : base(config, cached)
 {
 }