1 write to templates
System.Private.Xml (1)
System\Xml\Xsl\XsltOld\TemplateManager.cs (1)
65this.templates ??= new ArrayList();
9 references to templates
System.Private.Xml (9)
System\Xml\Xsl\XsltOld\Stylesheet.cs (3)
252if (manager.templates != null) 254for (int i = 0; i < manager.templates.Count; i++) 256TemplateAction template = (TemplateAction)manager.templates[i]!;
System\Xml\Xsl\XsltOld\TemplateManager.cs (6)
67this.templates.Add(template); 72this.templates?.Sort(s_TemplateComparer); 77if (this.templates == null) 82Debug.Assert(this.templates != null); 83for (int templateIndex = this.templates.Count - 1; templateIndex >= 0; templateIndex--) 85TemplateAction action = (TemplateAction)this.templates[templateIndex]!;