Example #1
0
        public string[] GetValues(string sKind)
        {
            if (sKind.Equals("RemoteName"))
            {
                string s = EditionDifference.ActiveSolutionName();

                EEPRemoteModule remoteObject = new EEPRemoteModule();
                object[] myRet = remoteObject.GetSqlCommandList(new object[] { (object)"", (object)"", (object)"", (object)"", (object)"", (object)"", (object)s });
                if ((null != myRet))
                {
                    if (0 == (int)(myRet[0]))
                    {
                        string[] sList = (string[])(myRet[1]);
                        return sList;
                    }
                    else
                    {
                        return new string[0] { };
                    }
                } else
                    return new string[0] { };
            }
            else
                return new string[0] { };
        }