1 type derived from VariableAction
System.Private.Xml (1)
System\Xml\Xsl\XsltOld\WithParamAction.cs (1)
12
internal sealed class WithParamAction :
VariableAction
1 instantiation of VariableAction
System.Private.Xml (1)
System\Xml\Xsl\XsltOld\Compiler.cs (1)
1118
VariableAction action = new
VariableAction
(type);
15 references to VariableAction
System.Private.Xml (15)
System\Xml\Xsl\XsltOld\Compiler.cs (4)
316
internal int InsertVariable(
VariableAction
variable)
331
VariableAction
? oldVar = varScope.ResolveVariable(variable.Name!);
1116
public
VariableAction
? CreateVariableAction(VariableType type)
1118
VariableAction
action = new VariableAction(type);
System\Xml\Xsl\XsltOld\ContainerAction.cs (2)
568
VariableAction
? action = compiler.CreateVariableAction(VariableType.GlobalVariable);
576
VariableAction
? action = compiler.CreateVariableAction(VariableType.GlobalParameter);
System\Xml\Xsl\XsltOld\InputScope.cs (5)
90
internal void InsertVariable(
VariableAction
variable)
107
public
VariableAction
? ResolveVariable(XmlQualifiedName qname)
113
VariableAction
? variable = (
VariableAction
?)inputScope.Variables[qname];
123
public
VariableAction
? ResolveGlobalVariable(XmlQualifiedName qname)
System\Xml\Xsl\XsltOld\Processor.cs (2)
989
internal object GetVariableValue(
VariableAction
variable)
996
if (result ==
VariableAction
.BeingComputedMark)
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (2)
79
internal object EvaluateVariable(
VariableAction
variable)
85
VariableAction
? global = _manager!.VariableScope.ResolveGlobalVariable(variable.Name!);