Exemplo n.º 1
0
        private void HandleDefiningExpressionElment(XmlReader reader)
        {
            FunctionCommandText functionCommandText = new FunctionCommandText((Function)this);

            functionCommandText.Parse(reader);
            this._commandText = functionCommandText;
        }
Exemplo n.º 2
0
        private void HandleCommandTextFunctionElment(XmlReader reader)
        {
            FunctionCommandText functionCommandText = new FunctionCommandText(this);

            functionCommandText.Parse(reader);
            this._commandText = functionCommandText;
        }
Exemplo n.º 3
0
        private void HandleCommandTextFunctionElment(XmlReader reader)
        {
            DebugCheck.NotNull(reader);

            var commandText = new FunctionCommandText(this);

            commandText.Parse(reader);
            _commandText = commandText;
        }
Exemplo n.º 4
0
        private void HandleCommandTextFunctionElment(XmlReader reader)
        {
            DebugCheck.NotNull(reader);

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