System.LoaderOptimization Enumeration

Assembly: Mscorlib.dll
Namespace: System
Summary
An enumeration used with the LoaderOptimizationAttribute class to specify loader optimizations for an executable.
C# Syntax:
[Serializable]
public enum LoaderOptimization
See also:
System Namespace | LoaderOptimizationAttribute

System.LoaderOptimization Member List:

Public Fields
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 for globally available (strong-named) assemblies only.
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.

Hierarchy:


Top of page

Copyright (c) 2002 Microsoft Corporation. All rights reserved.