ModuleBuilder.GetPEKind(PortableExecutableKinds, ImageFileMachine) Method

Definition

Gets a pair of values indicating the nature of the code in a module and the platform targeted by the module.

public:
 override void GetPEKind([Runtime::InteropServices::Out] System::Reflection::PortableExecutableKinds % peKind, [Runtime::InteropServices::Out] System::Reflection::ImageFileMachine % machine);
public override void GetPEKind (out System.Reflection.PortableExecutableKinds peKind, out System.Reflection.ImageFileMachine machine);
override this.GetPEKind : PortableExecutableKinds * ImageFileMachine -> unit
Public Overrides Sub GetPEKind (ByRef peKind As PortableExecutableKinds, ByRef machine As ImageFileMachine)

Parameters

peKind
PortableExecutableKinds

When this method returns, a combination of the PortableExecutableKinds values indicating the nature of the code in the module.

machine
ImageFileMachine

When this method returns, one of the ImageFileMachine values indicating the platform targeted by the module.

Remarks

For dynamic modules, peKind is always PortableExecutableKinds.NotAPortableExecutableImage and machine is always 0 (zero).

Applies to