3 instantiations of StreamConstraints
System.Reflection.Metadata (3)
System\Reflection\Internal\MemoryBlocks\ByteArrayMemoryProvider.cs (1)
39constraints = new StreamConstraints(null, 0, Size);
System\Reflection\Internal\MemoryBlocks\ExternalMemoryBlockProvider.cs (1)
38constraints = new StreamConstraints(null, 0, _size);
System\Reflection\Internal\MemoryBlocks\StreamMemoryBlockProvider.cs (1)
120constraints = new StreamConstraints(_streamGuard, _imageStart, _imageSize);
8 references to StreamConstraints
System.Reflection.Metadata (8)
System\Reflection\Internal\MemoryBlocks\ByteArrayMemoryProvider.cs (1)
37public override Stream GetStream(out StreamConstraints constraints)
System\Reflection\Internal\MemoryBlocks\ExternalMemoryBlockProvider.cs (1)
36public override Stream GetStream(out StreamConstraints constraints)
System\Reflection\Internal\MemoryBlocks\MemoryBlockProvider.cs (4)
43/// The operations on the stream has to be done under a lock of <see cref="StreamConstraints.GuardOpt"/> if non-null. 44/// The image starts at <see cref="StreamConstraints.ImageStart"/> and has size <see cref="StreamConstraints.ImageSize"/>. 47public abstract Stream GetStream(out StreamConstraints constraints);
System\Reflection\Internal\MemoryBlocks\StreamMemoryBlockProvider.cs (1)
118public override Stream GetStream(out StreamConstraints constraints)
System\Reflection\PortableExecutable\PEReader.cs (1)
311StreamConstraints constraints;