AppDomainSetup.AppDomainManagerAssembly Property
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.
Gets or sets the display name of the assembly that provides the type of the application domain manager for application domains created using this AppDomainSetup object.
public:
property System::String ^ AppDomainManagerAssembly { System::String ^ get(); void set(System::String ^ value); };
public string AppDomainManagerAssembly { get; set; }
member this.AppDomainManagerAssembly : string with get, set
Public Property AppDomainManagerAssembly As String
Property Value
The display name of the assembly that provides the Type of the application domain manager.
Remarks
To specify the type of the application domain manager, set both this property and the AppDomainManagerType property. If either of these properties is not set, the other is ignored.
If no type is provided, the application domain manager is created from the same type as the parent application domain (that is, the application domain from which the AppDomain.CreateDomain method is called).
When the application domain is loaded, TypeLoadException is thrown if the assembly does not exist, or if the assembly does not contain the type specified by the AppDomainManagerType property. FileLoadException is thrown if the assembly is found but the version information does not match.
To set the application domain manager for the default application domain, use the <appDomainManagerAssembly> and <appDomainManagerType> elements in the <runtime> section of the application configuration file, or use the environment variables described in AppDomainManager.
This feature requires the application to have full trust. (For example, an application running on the desktop has full trust.) If the application does not have full trust, a TypeLoadException is thrown.
The format of the assembly display name is given by the Assembly.FullName property.