Provides a base implementation of a template.
Inheritance: System.MarshalByRefObject, ITemplate
        internal ExecuteContextAdapter(TemplateBase template, ExecuteContext context)
        {
            Contract.Requires(template != null);

            _template = template;
            _context = context;
            SetContext(_context);
        }
Exemple #2
0
 public ScriptHelper(TemplateBase template)
 {
     _template = Verify.ArgumentNotNull(template, "template");
 }