コード例 #1
0
        public static object GetConfigurationSection(string name)
        {
            object section = ConfigurationManager.GetSection(name);

            if (section == null)
            {
                string str = ProcessWrapper.ResolveBinaryFullPath("AzureStorageEmulator.exe");
                section = ConfigurationManager.OpenExeConfiguration(str).GetSection(name);
            }
            return(section);
        }