16 types derived from ContainerAction
System.Data.SqlXml (16)
System\Xml\Xsl\XsltOld\ApplyTemplatesAction.cs (1)
16internal class ApplyTemplatesAction : ContainerAction {
System\Xml\Xsl\XsltOld\AttributeAction.cs (1)
15internal class AttributeAction : ContainerAction {
System\Xml\Xsl\XsltOld\AttributeSetAction.cs (1)
16internal class AttributeSetAction : ContainerAction {
System\Xml\Xsl\XsltOld\CallTemplateAction.cs (1)
15internal class CallTemplateAction : ContainerAction {
System\Xml\Xsl\XsltOld\ChooseAction.cs (1)
15internal class ChooseAction : ContainerAction {
System\Xml\Xsl\XsltOld\CommentAction.cs (1)
15internal class CommentAction : ContainerAction {
System\Xml\Xsl\XsltOld\CopyAction.cs (1)
16internal class CopyAction : ContainerAction {
System\Xml\Xsl\XsltOld\ElementAction.cs (1)
15internal class ElementAction : ContainerAction {
System\Xml\Xsl\XsltOld\ForeachAction.cs (1)
16internal class ForEachAction : ContainerAction {
System\Xml\Xsl\XsltOld\IfAction.cs (1)
15internal class IfAction : ContainerAction {
System\Xml\Xsl\XsltOld\MessageAction.cs (1)
17internal class MessageAction : ContainerAction {
System\Xml\Xsl\XsltOld\NewInstructionAction.cs (1)
15internal class NewInstructionAction : ContainerAction {
System\Xml\Xsl\XsltOld\NumberAction.cs (1)
18internal class NumberAction : ContainerAction {
System\Xml\Xsl\XsltOld\ProcessingInstructionAction.cs (1)
15internal class ProcessingInstructionAction : ContainerAction {
System\Xml\Xsl\XsltOld\TemplateBaseAction.cs (1)
20internal abstract class TemplateBaseAction : ContainerAction {
System\Xml\Xsl\XsltOld\VariableAction.cs (1)
22internal class VariableAction : ContainerAction, IXsltContextVariable {
1 instantiation of ContainerAction
System.Data.SqlXml (1)
System\Xml\Xsl\XsltOld\ForeachAction.cs (1)
103sortContainer = new ContainerAction();
6 references to ContainerAction
System.Data.SqlXml (6)
System\Xml\Xsl\XsltOld\ActionFrame.cs (2)
196Debug.Assert(this.action is ContainerAction); 197return((ContainerAction) this.action).GetAction(actionIndex);
System\Xml\Xsl\XsltOld\ForeachAction.cs (1)
23private ContainerAction sortContainer;
System\Xml\Xsl\XsltOld\RootAction.cs (3)
182private void CheckAttributeSets_RecurceInContainer(Hashtable markTable, ContainerAction container) { 189} else if(action is ContainerAction) { 190CheckAttributeSets_RecurceInContainer(markTable, (ContainerAction)action);