7 types derived from Action
System.Data.SqlXml (7)
System\Xml\Xsl\XsltOld\CompiledAction.cs (1)
15internal abstract class CompiledAction : Action {
System\Xml\Xsl\XsltOld\CopyAttributesAction.cs (1)
15internal sealed class CopyAttributesAction : Action {
System\Xml\Xsl\XsltOld\CopyCodeAction.cs (1)
16internal class CopyCodeAction : Action {
System\Xml\Xsl\XsltOld\CopyNamespacesAction.cs (1)
15internal sealed class CopyNamespacesAction : Action {
System\Xml\Xsl\XsltOld\CopyNodesetAction.cs (1)
15internal sealed class CopyNodeSetAction : Action {
System\Xml\Xsl\XsltOld\TemplateLookupAction.cs (1)
15internal class TemplateLookupAction : Action {
System\Xml\Xsl\XsltOld\ValueOfAction.cs (1)
83internal class BuiltInRuleTextAction : Action {
24 references to Action
System.Data.SqlXml (24)
System\Xml\Xsl\XsltOld\ActionFrame.cs (11)
24private Action action; // Action currently being executed 161State = Action.Finished; 169private void Init(Action action, ActionFrame container, XPathNodeIterator nodeSet) { 170this.state = Action.Initialized; 178internal void Init(Action action, XPathNodeIterator nodeSet) { 186internal void SetAction(Action action) { 187SetAction(action, Action.Initialized); 190internal void SetAction(Action action, int state) { 195private Action GetAction(int actionIndex) { 218if (State == Action.Finished) { 223State = Action.Initialized;
System\Xml\Xsl\XsltOld\AttributeSetAction.cs (1)
89Action action;
System\Xml\Xsl\XsltOld\ContainerAction.cs (4)
715internal void AddAction(Action action) { 817internal Action GetAction(int actionIndex) { 821return (Action) this.containedActions[actionIndex]; 845((Action)this.containedActions[i]).ReplaceNamespaceAlias(compiler);
System\Xml\Xsl\XsltOld\Processor.cs (1)
441internal void PushActionFrame(Action action, XPathNodeIterator nodeSet) {
System\Xml\Xsl\XsltOld\RootAction.cs (1)
186foreach(Action action in container.containedActions) {
System\Xml\Xsl\XsltOld\TemplateLookupAction.cs (4)
28Action action = null; 55internal Action BuiltInTemplate(XPathNavigator node) { 57Action action = null; 96Action action = null;
System\Xml\Xsl\XsltOld\ValueOfAction.cs (2)
21private static Action s_BuiltInRule = new BuiltInRuleTextAction(); 23internal static Action BuiltInRule() {