Exemplo n.º 1
0
        public static string GetConfigurationFile(AppConfigBase configBase, bool bWriteMode)
        {
            string strAppDataFile = string.Empty;

            try
            {
                AppSettingsReader asReader = new AppSettingsReader();

                try
                {
                    string sConfigSectionName = configBase.GetConfigSectionName();

                    if (sConfigSectionName == string.Empty)
                    {
                        throw new Exception("The configuration section name is empty.");
                    }

                    strAppDataFile = (string)asReader.GetValue(sConfigSectionName, typeof(string));
                }
                catch (Exception exp)
                {
                    Logger.ThrowException(exp, "650e7340-f0ba-4128-ade9-c8ad59404317");
                    //throw new Exception(exp.Message + "650e7340-f0ba-4128-ade9-c8ad59404317");
                }

                int i = strAppDataFile.IndexOf(':');

                if (i == -1)
                {
                    string strBaseDirectory;
                    strBaseDirectory = AppDomain.CurrentDomain.BaseDirectory;

                    strAppDataFile = strBaseDirectory + strAppDataFile;
                }
            }
            catch (Exception exp)
            {
                Logger.ThrowException(exp, "a0abae8c-61dc-48c5-b4c6-89fabd0da4f6");
            }

            return(strAppDataFile);
        }
Exemplo n.º 2
0
        public static AppConfigBase GetConfiguration(AppConfigBase configBase)
        {
            try
            {
                if (configBase.GetType() == typeof(AppConfigBase))
                {
                    string strErrMessage = "The function GetConfiguration could not be used for the type AppConfigBase";
                    Debug.Assert(false, strErrMessage);
                    throw new Exception(strErrMessage);
                }

                return(GetConfigurationImpl(configBase));
            }
            catch (Exception exp)
            {
                Logger.ThrowException(exp, "f33d438c-bde2-4b8a-b9c5-cd98434c9dce");
            }

            return(null);
        }
Exemplo n.º 3
0
        internal static AppConfigBase GetConfigurationImpl(AppConfigBase configBase)
        {
            try
            {
                string strAppDataFile = GetConfigurationFile(configBase, false);

                if (strAppDataFile == String.Empty)
                {
                    return(null);
                }

                XmlSerializer serializer = new XmlSerializer(configBase.GetType());

                object obj = null;

                if (!File.Exists(strAppDataFile))
                {
                    if (configBase.GetType() == typeof(AppConfigBase))
                    {
                        throw new Exception(String.Format("Could not find AppConfigBase config file: {0}", strAppDataFile));
                    }
                    return(configBase);
                }

                using (StreamReader sr = new StreamReader(strAppDataFile))
                {
                    obj = serializer.Deserialize(sr);
                }
                return((AppConfigBase)obj);
            }
            catch (Exception exp)
            {
                Logger.ThrowException(exp, "98745257-7e53-4561-b698-92f057aec0b4");
            }

            return(null);
        }