9 references to Blob
System.Reflection.Metadata (9)
System\Reflection\Metadata\BlobBuilder.cs (1)
592
return new
Blob
(_buffer, start, byteCount);
System\Reflection\Metadata\BlobBuilder.Enumerators.cs (1)
82
return new
Blob
(current._buffer, 0, current.Length);
System\Reflection\Metadata\BlobWriter.cs (1)
79
public Blob Blob => new
Blob
(_buffer, _start, Length);
System\Reflection\PortableExecutable\PEBuilder.cs (6)
447
yield return new
Blob
(blob.Buffer, blobStart, length);
461
yield return GetPrefixBlob(new
Blob
(blob.Buffer, blobStart, blobLength), strongNameSignatureFixup);
462
yield return GetSuffixBlob(new
Blob
(blob.Buffer, blobStart, blobLength), strongNameSignatureFixup);
467
yield return new
Blob
(blob.Buffer, blobStart, blobLength);
475
internal static Blob GetPrefixBlob(Blob container, Blob blob) => new
Blob
(container.Buffer, container.Start, blob.Start - container.Start);
476
internal static Blob GetSuffixBlob(Blob container, Blob blob) => new
Blob
(container.Buffer, blob.Start + blob.Length, container.Start + container.Length - blob.Start - blob.Length);