AppDomainSetup.ConfigurationFile Property

Definition

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

public:
 property System::String ^ ConfigurationFile { System::String ^ get(); void set(System::String ^ value); };
public string ConfigurationFile { get; set; }
member this.ConfigurationFile : string with get, set
Public Property ConfigurationFile As String

Property Value

The name of the configuration file.

Implements

Remarks

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.

Applies to

See also