ConfigurationSettings.GetConfig(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
ConfigurationSettings.GetConfig has been deprecated. Use System.Configuration.ConfigurationManager.GetSection instead.
Caution
This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.GetSection
Returns the ConfigurationSection object for the passed configuration section name and path.
public:
static System::Object ^ GetConfig(System::String ^ sectionName);
[System.Obsolete("ConfigurationSettings.GetConfig has been deprecated. Use System.Configuration.ConfigurationManager.GetSection instead.")]
public static object GetConfig (string sectionName);
public static object GetConfig (string sectionName);
[System.Obsolete("This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.GetSection")]
public static object GetConfig (string sectionName);
[<System.Obsolete("ConfigurationSettings.GetConfig has been deprecated. Use System.Configuration.ConfigurationManager.GetSection instead.")>]
static member GetConfig : string -> obj
static member GetConfig : string -> obj
[<System.Obsolete("This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.GetSection")>]
static member GetConfig : string -> obj
Public Shared Function GetConfig (sectionName As String) As Object
Parameters
- sectionName
- String
A configuration name and path, such as "system.net/settings".
Returns
The ConfigurationSection object for the passed configuration section name and path.
- Attributes
Exceptions
Unable to retrieve the requested section.
Remarks
This method is obsolete and is maintained for backward compatibility. Please use the ConfigurationManager.GetSection(String) method instead.