9 references to Blob
System.Reflection.Metadata (9)
System\Reflection\Metadata\BlobBuilder.cs (1)
598return new Blob(_buffer, start, byteCount);
System\Reflection\Metadata\BlobBuilder.Enumerators.cs (1)
82return new Blob(current._buffer, 0, current.Length);
System\Reflection\Metadata\BlobWriter.cs (1)
80public Blob Blob => new Blob(_buffer, _start, Length);
System\Reflection\PortableExecutable\PEBuilder.cs (6)
439yield return new Blob(blob.Buffer, blobStart, length); 453yield return GetPrefixBlob(new Blob(blob.Buffer, blobStart, blobLength), strongNameSignatureFixup); 454yield return GetSuffixBlob(new Blob(blob.Buffer, blobStart, blobLength), strongNameSignatureFixup); 459yield return new Blob(blob.Buffer, blobStart, blobLength); 467internal static Blob GetPrefixBlob(Blob container, Blob blob) => new Blob(container.Buffer, container.Start, blob.Start - container.Start); 468internal static Blob GetSuffixBlob(Blob container, Blob blob) => new Blob(container.Buffer, blob.Start + blob.Length, container.Start + container.Length - blob.Start - blob.Length);