PEStreamOptions Enum
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- Attributes
Name | Value | Description |
---|---|---|
Default | 0 | By default, the stream is disposed when the PEReader is disposed, and sections of the PE image are read lazily. |
LeaveOpen | 1 | Keeps the stream open when the PEReader is disposed. |
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. |
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. |
IsLoadedImage | 8 | Indicates that the underlying PE image has been loaded into memory by the OS loader. |
Product | Versions |
---|---|
.NET | Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8 (package-provided), 8, 9 (package-provided), 9 |
.NET Framework | 4.7 (package-provided), 4.7.1 (package-provided), 4.7.2 (package-provided), 4.8 (package-provided) |
.NET Standard | 2.0 (package-provided) |
UWP | 10.0 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: