7 types derived from Action
System.Private.Xml (7)
System\Xml\Xsl\XsltOld\CompiledAction.cs (1)
11internal abstract class CompiledAction : Action
System\Xml\Xsl\XsltOld\CopyAttributesAction.cs (1)
11internal sealed class CopyAttributesAction : Action
System\Xml\Xsl\XsltOld\CopyCodeAction.cs (1)
12internal sealed class CopyCodeAction : Action
System\Xml\Xsl\XsltOld\CopyNamespacesAction.cs (1)
9internal sealed class CopyNamespacesAction : Action
System\Xml\Xsl\XsltOld\CopyNodeSetAction.cs (1)
11internal sealed class CopyNodeSetAction : Action
System\Xml\Xsl\XsltOld\TemplateLookupAction.cs (1)
12internal class TemplateLookupAction : Action
System\Xml\Xsl\XsltOld\ValueOfAction.cs (1)
90internal sealed class BuiltInRuleTextAction : Action
24 references to Action
System.Private.Xml (24)
System\Xml\Xsl\XsltOld\ActionFrame.cs (11)
20private Action? _action; // Action currently being executed 179State = Action.Finished; 188private void Init(Action? action, ActionFrame? container, XPathNodeIterator? nodeSet) 190_state = Action.Initialized; 198internal void Init(Action action, XPathNodeIterator? nodeSet) 208internal void SetAction(Action action) 210SetAction(action, Action.Initialized); 213internal void SetAction(Action action, int state) 219private Action? GetAction(int actionIndex) 247if (State == Action.Finished) 254State = Action.Initialized;
System\Xml\Xsl\XsltOld\AttributeSetAction.cs (1)
99Action? action;
System\Xml\Xsl\XsltOld\ContainerAction.cs (4)
858internal void AddAction(Action? action) 979internal Action? GetAction(int actionIndex) 985return (Action)this.containedActions[actionIndex]!; 1016((Action)this.containedActions[i]!).ReplaceNamespaceAlias(compiler);
System\Xml\Xsl\XsltOld\Processor.cs (1)
487internal void PushActionFrame(Action action, XPathNodeIterator? nodeSet)
System\Xml\Xsl\XsltOld\RootAction.cs (1)
202foreach (Action action in container.containedActions)
System\Xml\Xsl\XsltOld\TemplateLookupAction.cs (4)
28Action? action; 57internal Action? BuiltInTemplate(XPathNavigator node) 60Action? action = null; 102Action? action;
System\Xml\Xsl\XsltOld\ValueOfAction.cs (2)
18private static readonly Action s_BuiltInRule = new BuiltInRuleTextAction(); 20internal static Action BuiltInRule()