22 references to VariableType
System.Data.SqlXml (22)
System\Xml\Xsl\XsltOld\Compiler.cs (4)
307Debug.Assert(variable.VarType == VariableType.LocalVariable || variable.VarType == VariableType.LocalParameter || variable.VarType == VariableType.WithParameter); 1114public virtual VariableAction CreateVariableAction(VariableType type) {
System\Xml\Xsl\XsltOld\ContainerAction.cs (3)
475VariableAction action = compiler.CreateVariableAction(VariableType.GlobalVariable); 481VariableAction action = compiler.CreateVariableAction(VariableType.GlobalParameter); 618action = compiler.CreateVariableAction(VariableType.LocalVariable);
System\Xml\Xsl\XsltOld\DbgCompiler.cs (2)
256public override VariableAction CreateVariableAction(VariableType type) { 668internal VariableActionDbg(VariableType type) : base(type) {}
System\Xml\Xsl\XsltOld\TemplateAction.cs (1)
157AddAction(compiler.CreateVariableAction(VariableType.LocalParameter));
System\Xml\Xsl\XsltOld\VariableAction.cs (11)
31protected VariableType varType; 43internal VariableType VarType { 50get { return this.varType == VariableType.GlobalVariable || this.varType == VariableType.GlobalParameter; } 53internal VariableAction(VariableType type) { 115if (this.varType == VariableType.GlobalParameter) { 117} else if (this.varType == VariableType.LocalParameter) { 170get { return this.varType == VariableType.LocalVariable || this.varType == VariableType.LocalParameter; } 173get { return this.varType == VariableType.LocalParameter || this.varType == VariableType.GlobalParameter; }
System\Xml\Xsl\XsltOld\WithParamAction.cs (1)
17internal WithParamAction() : base(VariableType.WithParameter) {}