Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

IAppDomainSetup::ConfigurationFile Property

 

Gets and sets the name of the configuration file for an application domain.

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

property String^ ConfigurationFile {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

A String that specifies the name of the configuration file.

The configuration file describes the search rules and configuration data for the application domain. The host that creates the application domain is responsible for supplying this data because the meaningful values vary from situation to situation.

For example, the configuration data for ASP.NET applications is stored for each application, site, and computer, while the configuration data for an executable is stored for each application, user, and computer. Only the host knows the specifics of the configuration data for a particular circumstance.

This property cannot be changed after the AppDomain has finished its first bind.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft