Example #1
0
        private void HandleDefiningExpressionElment(XmlReader reader)
        {
            Debug.Assert(reader != null);

            FunctionCommandText commandText = new FunctionCommandText(this);

            commandText.Parse(reader);
            _commandText = commandText;
        }
Example #2
0
        private void HandleCommandTextFunctionElment(XmlReader reader)
        {
            Debug.Assert(reader != null);

            FunctionCommandText commandText = new FunctionCommandText(this);
            commandText.Parse(reader);
            _commandText = commandText;
        }
        private void HandleDefiningExpressionElment(XmlReader reader)
        {
            Debug.Assert(reader != null);

            var commandText = new FunctionCommandText(this);
            commandText.Parse(reader);
            _commandText = commandText;
        }