MetadataStreamOptions Enum
Definition
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.
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
- Attributes
Fields
Name | Value | Description |
---|---|---|
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. |