public TemplateAttributeReplacer(string template) { if (template == null) { throw new ArgumentNullException(String.Format(Literals.ArgumentNullMsg, "template")); } this.template = new T.Template(template); }
/** Clone a prototype template. * Copy all fields except DebugState. */ public Template(Template prototype) : this(prototype, false) { }