System.Configuration.ConfigurationManager.RefreshSection 方法
上一篇:system.configuration.configurationmanager.OpenMappedMachineConfiguration 方法
下一篇:System.Configuration.ConfigurationPermission 类
方法描述
刷新命名节,这样在下次检索它时将从磁盘重新读取它。
语法定义(C# System.Configuration.ConfigurationManager.RefreshSection 方法 的用法)
public static void RefreshSection( string sectionName )
参数/返回值
参数值/返回值 | 参数类型/返回类型 | 参数描述/返回描述 |
---|---|---|
sectionName | System-String | 要刷新的节的配置节名称或配置路径和节名称。 |
返回值 | void |
提示和注释
此方法在不影响其他节的前提下使指定配置节的缓存失效。
System.Configuration.ConfigurationManager.RefreshSection 方法例子
下面的代码示例演示如何使用 RefreshSection 方法刷新应用程序设置配置节。
// Create the AppSettings section. // The function uses the GetSection(string)method // to access the configuration section. // It also adds a new element to the section collection. public static void CreateAppSettings() { // Get the application configuration file. System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration( ConfigurationUserLevel.None); string sectionName = "appSettings"; // Add an entry to appSettings. int appStgCnt = ConfigurationManager.AppSettings.Count; string newKey = "NewKey" + appStgCnt.ToString(); string newValue = DateTime.Now.ToLongDateString() + " " + DateTime.Now.ToLongTimeString(); config.AppSettings.Settings.Add(newKey, newValue); // Save the configuration file. config.Save(ConfigurationSaveMode.Modified); // Force a reload of the changed section. This // makes the new values available for reading. ConfigurationManager.RefreshSection(sectionName); // Get the AppSettings section. AppSettingsSection appSettingSection = (AppSettingsSection)config.GetSection(sectionName); Console.WriteLine(); Console.WriteLine("Using GetSection(string)."); Console.WriteLine("AppSettings section:"); Console.WriteLine( appSettingSection.SectionInformation.GetRawXml()); }
版本信息
.NET Framework 受以下版本支持:4、3.5、3.0、2.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1
适用平台
Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
上一篇:system.configuration.configurationmanager.OpenMappedMachineConfiguration 方法
下一篇:System.Configuration.ConfigurationPermission 类