BSky.Statistics.R.UAPackageAPI.EvaluateToObjectXml C# (CSharp) Method

EvaluateToObjectXml() private method

private EvaluateToObjectXml ( string commandString ) : XmlDocument
commandString string
return System.Xml.XmlDocument
        private XmlDocument EvaluateToObjectXml(string commandString)
        {
            try
            {
                _journal.WriteLine(commandString);
                return dispatcher.EvaluateToXml(commandString);
            }
            catch (Exception ex)
            {
                logService.WriteToLogLevel(dispatcher.GetErrorText(), LogLevelEnum.Error, ex);
                throw new Exception(dispatcher.GetErrorText(), ex);

            }
        }
        #endregion
UAPackageAPI