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

            _config = config;
            _cached = cached;
        }
Ejemplo n.º 3
0
 internal RazorEngineCore(ReadOnlyTemplateServiceConfiguration config, RazorEngineService cached)
 {
     if (config == null)
     {
         throw new ArgumentNullException("config");
     }
     
     _config = config;
     _cached = cached;
     AppDomain.CurrentDomain.AssemblyResolve += AssemblyResolve;
 }
Ejemplo 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)
 {
 }