private void HandleDefiningExpressionElment(XmlReader reader) { FunctionCommandText functionCommandText = new FunctionCommandText((Function)this); functionCommandText.Parse(reader); this._commandText = functionCommandText; }
private void HandleCommandTextFunctionElment(XmlReader reader) { FunctionCommandText functionCommandText = new FunctionCommandText(this); functionCommandText.Parse(reader); this._commandText = functionCommandText; }
private void HandleCommandTextFunctionElment(XmlReader reader) { DebugCheck.NotNull(reader); var commandText = new FunctionCommandText(this); commandText.Parse(reader); _commandText = commandText; }