14 references to PrefetchMetadata
Microsoft.CodeAnalysis (3)
MetadataReference\ModuleMetadata.cs (3)
203
/// <see cref="PEStreamOptions.
PrefetchMetadata
"/> or <see cref="PEStreamOptions.PrefetchEntireImage"/> is specified and the PE headers of the image are invalid.
206
/// <see cref="PEStreamOptions.
PrefetchMetadata
"/> or <see cref="PEStreamOptions.PrefetchEntireImage"/> is specified and an error occurs while reading the stream.
220
var prefetch = (options & (PEStreamOptions.PrefetchEntireImage | PEStreamOptions.
PrefetchMetadata
)) != 0;
rzc (1)
MetadataCache.cs (1)
44
metadata = AssemblyMetadata.CreateFromStream(fileStream, PEStreamOptions.
PrefetchMetadata
);
System.Reflection.Metadata (9)
System\Reflection\PortableExecutable\PEReader.cs (8)
115
/// Unless <see cref="PEStreamOptions.
PrefetchMetadata
"/> or <see cref="PEStreamOptions.PrefetchEntireImage"/> is specified no data
119
/// If <see cref="PEStreamOptions.
PrefetchMetadata
"/> or <see cref="PEStreamOptions.PrefetchEntireImage"/>, the <see cref="PEReader"/>
127
/// <exception cref="BadImageFormatException"><see cref="PEStreamOptions.
PrefetchMetadata
"/> is specified and the PE headers of the image are invalid.</exception>
144
/// Unless <see cref="PEStreamOptions.
PrefetchMetadata
"/> or <see cref="PEStreamOptions.PrefetchEntireImage"/> is specified no data
148
/// If <see cref="PEStreamOptions.
PrefetchMetadata
"/> or <see cref="PEStreamOptions.PrefetchEntireImage"/>, the <see cref="PEReader"/>
155
/// <exception cref="BadImageFormatException"><see cref="PEStreamOptions.
PrefetchMetadata
"/> is specified and the PE headers of the image are invalid.</exception>
181
if ((options & (PEStreamOptions.
PrefetchMetadata
| PEStreamOptions.PrefetchEntireImage)) == 0)
196
if ((options & PEStreamOptions.
PrefetchMetadata
) != 0)
System\Reflection\PortableExecutable\PEStreamOptions.cs (1)
48
return (options & ~(PEStreamOptions.LeaveOpen | PEStreamOptions.PrefetchEntireImage | PEStreamOptions.
PrefetchMetadata
| PEStreamOptions.IsLoadedImage)) == 0;
VBCSCompiler (1)
src\roslyn\src\Compilers\Server\VBCSCompiler\MetadataCache.cs (1)
28
var options = PEStreamOptions.
PrefetchMetadata
;