PEStreamOptions Enum

Definition

Provides options that specify how sections of a PE image are read from a stream.

This enumeration supports a bitwise combination of its member values.

public enum class PEStreamOptions
[System.Flags]
public enum PEStreamOptions
[<System.Flags>]
type PEStreamOptions = 
Public Enum PEStreamOptions
Inheritance
PEStreamOptions
Attributes

Fields

Default 0

By default, the stream is disposed when the PEReader is disposed, and sections of the PE image are read lazily.

IsLoadedImage 8

Indicates that the underlying PE image has been loaded into memory by the OS loader.

LeaveOpen 1

Keeps the stream open when the PEReader is disposed.

PrefetchEntireImage 4

Reads the entire image into memory right away. PEReader closes the stream automatically by the time the constructor returns unless LeaveOpen is specified.

PrefetchMetadata 2

Reads the metadata section into memory right away.

Reading from other sections of the file is not allowed (InvalidOperationException is thrown by the PEReader).

PEReader closes the stream automatically by the time the constructor returns unless LeaveOpen is specified. The underlying file may be closed and even deleted after PEReader is constructed.

Applies to