20 references to VariableType
System.Private.Xml (20)
System\Xml\Xsl\XsltOld\Compiler.cs (4)
327Debug.Assert(variable.VarType == VariableType.LocalVariable || variable.VarType == VariableType.LocalParameter || variable.VarType == VariableType.WithParameter); 1116public VariableAction? CreateVariableAction(VariableType type)
System\Xml\Xsl\XsltOld\ContainerAction.cs (3)
568VariableAction? action = compiler.CreateVariableAction(VariableType.GlobalVariable); 576VariableAction? action = compiler.CreateVariableAction(VariableType.GlobalParameter); 748action = compiler.CreateVariableAction(VariableType.LocalVariable);
System\Xml\Xsl\XsltOld\TemplateAction.cs (1)
174AddAction(compiler.CreateVariableAction(VariableType.LocalParameter));
System\Xml\Xsl\XsltOld\VariableAction.cs (11)
28protected VariableType varType; 43internal VariableType VarType 53get { return this.varType == VariableType.GlobalVariable || this.varType == VariableType.GlobalParameter; } 56internal VariableAction(VariableType type) 133if (this.varType == VariableType.GlobalParameter) 137else if (this.varType == VariableType.LocalParameter) 197get { return this.varType == VariableType.LocalVariable || this.varType == VariableType.LocalParameter; } 201get { return this.varType == VariableType.LocalParameter || this.varType == VariableType.GlobalParameter; }
System\Xml\Xsl\XsltOld\WithParamAction.cs (1)
14internal WithParamAction() : base(VariableType.WithParameter) { }