This documentation is archived and is not being maintained.
PortableExecutableKinds Enumeration
Visual Studio 2010
Identifies the nature of the code in an executable file.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.ReflectionAssembly: mscorlib (in mscorlib.dll)
| Member name | Description | |
|---|---|---|
| NotAPortableExecutableImage | The file is not in portable executable (PE) file format. | |
| ILOnly | The executable contains only Microsoft intermediate language (MSIL), and is therefore neutral with respect to 32-bit or 64-bit platforms. | |
| Required32Bit | The executable can be run on a 32-bit platform, or in the 32-bit Windows on Windows (WOW) environment on a 64-bit platform. | |
| PE32Plus | The executable requires a 64-bit platform. | |
| Unmanaged32Bit | The executable contains pure unmanaged code. |
To obtain this value for a module, use the Module::GetPEKind method.
Note |
|---|
This enumeration corresponds to the CorPEKind enumeration in the unmanaged reflection API, which is accessed by the unmanaged GetPEKind function. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show:
Note