System.Xml.Xsl.XsltOld.DbgData.ReplaceVariables C# (CSharp) Method

ReplaceVariables() private method

private ReplaceVariables ( VariableAction vars ) : void
vars VariableAction
return void
        internal void ReplaceVariables(VariableAction[] vars) { this.variables = vars; }

Usage Example

Ejemplo n.º 1
0
            // SxS: This method does not take any resource name and does not expose any resources to the caller.
            // It's OK to suppress the SxS warning.
            internal override void Compile(Compiler compiler)
            {
                _dbgData = new DbgData(compiler);
                base.Compile(compiler);

                Debug.Assert(compiler.Debugger != null);
                string builtIn = compiler.Debugger.GetBuiltInTemplatesUri();

                if (builtIn != null && builtIn.Length != 0)
                {
                    compiler.AllowBuiltInMode = true;
                    builtInSheet = compiler.RootAction.CompileImport(compiler, compiler.ResolveUri(builtIn), int.MaxValue);
                    compiler.AllowBuiltInMode = false;
                }

                _dbgData.ReplaceVariables(((DbgCompiler)compiler).GlobalVariables);
            }
All Usage Examples Of System.Xml.Xsl.XsltOld.DbgData::ReplaceVariables