public bool AddTemplate(string name, CombinedTemplateState template) { if (Contents.ContainsKey(name)) { return(false); } Contents.Add(name, template); return(true); }
public bool TryGetTemplate(string templateName, out CombinedTemplateState template) { return(Contents.TryGetValue(templateName, out template)); }