System.LoaderOptimization Enumeration

An enumeration used with the LoaderOptimizationAttribute class to specify loader optimizations for an executable.

Syntax

[System.Runtime.InteropServices.ComVisible(true)]
public enum LoaderOptimization

Remarks

The meaning of LoaderOptimization.MultiDomainHost changed in the .NET Framework version 2.0. The loader now shares resources across application domains only for assemblies that have been added to the global assembly cache.

Note:

If custom code access security policy is set for the AppDomain, by using the AppDomain.SetAppDomainPolicy(System.Security.Policy.PolicyLevel) property, and the AppDomain is created using the LoaderOptimization.MultiDomain flag, the effect is the same as specifying the LoaderOptimization.MultiDomainHost flag; that is, only assemblies in the GAC are shared. When this occurs, the loader does not throw an exception and the application does not experience the performance gains associated with the LoaderOptimization.MultiDomain flag.

For more information on assembly sharing and domain-neutral assembly loading, see Application Domains and Assemblies.

Members

Member NameDescription
DisallowBindings

Ignored by the common language runtime.

DomainMask

Do not use. This mask selects the domain-related values, screening out the unused LoaderOptimization.DisallowBindings flag.

MultiDomain

Indicates that the application will probably have many domains that use the same code, and the loader must share maximal internal resources across application domains.

MultiDomainHost

Indicates that the application will probably host unique code in multiple domains, and the loader must share resources across application domains only for globally available (strong-named) assemblies that have been added to the global assembly cache.

NotSpecified

Indicates that no optimizations for sharing internal resources are specified. If the default domain or hosting interface specified an optimization, then the loader uses that; otherwise, the loader uses LoaderOptimization.SingleDomain.

SingleDomain

Indicates that the application will probably have a single domain, and loader must not share internal resources across application domains.

Requirements

Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0