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