ConfigurationManager::OpenMappedMachineConfiguration Method (ConfigurationFileMap^)

 

Opens the machine configuration file as a Configuration object that uses the specified file mapping.

Namespace:   System.Configuration
Assembly:  System.Configuration (in System.Configuration.dll)

public:
static Configuration^ OpenMappedMachineConfiguration(
	ConfigurationFileMap^ fileMap
)

Parameters

fileMap
Type: System.Configuration::ConfigurationFileMap^

An ExeConfigurationFileMap object that references configuration file to use instead of the application default configuration file.

Exception Condition
ConfigurationErrorsException

A configuration file could not be loaded.

Machine configuration settings apply to the whole computer and all applications that reside on it, unless overridden for the local application. Machine configuration settings are read from the Machine.config file of the currently running version of the .NET Framework. The Machine.config file is located in the following subdirectory:

%windir%\Microsoft.NET\Framework\version\config

System_CAPS_noteNote

To obtain the Configuration object for a resource, your code must have read permissions on all the configuration files from which it inherits settings. To update a configuration file, your code must additionally have write permissions for both the configuration file and the directory in which it exists. It is not possible to access the Machine.config file for other versions of the .NET Framework that might be installed on the computer.

The following code example shows how to use the OpenMappedMachineConfiguration method to obtain all sections in the configuration file.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: