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.
LoaderOptimization Enumeration
.NET Framework 1.1
An enumeration used with the LoaderOptimizationAttribute class to specify loader optimizations for an executable.
[Visual Basic] <Serializable> Public Enum LoaderOptimization [C#] [Serializable] public enum LoaderOptimization [C++] [Serializable] __value public enum LoaderOptimization [JScript] public Serializable enum LoaderOptimization
Members
| Member name | Description |
|---|---|
| DisallowBindings | |
| DomainMask | |
| 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 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
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: Mscorlib (in Mscorlib.dll)
See Also
Show: