AppDomainSetup::SetConfigurationBytes Method
Provides XML configuration information for the application domain, replacing the application's XML configuration information.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: array<System::Byte>
An array that contains the XML configuration information to be used for the application domain.
The SetConfigurationBytes method provides a way to replace the configuration information of an application that creates a new application domain. The configuration file information in value replaces the configuration file information for the application. For example, when the Example.exe application creates a new application domain, it can replace the configuration information originally obtained from the Example.exe.config file.
Important |
|---|
Some consumers of configuration file information do not use the information stored by the SetConfigurationBytes method. The runtime does not enforce this. To ensure that all configuration file information is replaced in a new application domain, use the ConfigurationFile property to specify a configuration file. The SetConfigurationBytes method does affect assembly binding. |
The XML in value is the same as the XML in a normal configuration file, except that it is stored as a Byte array.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Important