MetadataStreamOptions Enum

Definition

This enumeration supports a bitwise combination of its member values.

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

Fields

Default 0

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

LeaveOpen 1

Keeps the stream open when the MetadataReaderProvider is disposed.

PrefetchMetadata 2

Reads PDB metadata into memory right away.

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

Applies to