9 references to Blob
System.Reflection.Metadata (9)
System\Reflection\Metadata\BlobBuilder.cs (1)
592return 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)
79public Blob Blob => new Blob(_buffer, _start, Length);
System\Reflection\PortableExecutable\PEBuilder.cs (6)
447yield return new Blob(blob.Buffer, blobStart, length); 461yield return GetPrefixBlob(new Blob(blob.Buffer, blobStart, blobLength), strongNameSignatureFixup); 462yield return GetSuffixBlob(new Blob(blob.Buffer, blobStart, blobLength), strongNameSignatureFixup); 467yield return new Blob(blob.Buffer, blobStart, blobLength); 475internal static Blob GetPrefixBlob(Blob container, Blob blob) => new Blob(container.Buffer, container.Start, blob.Start - container.Start); 476internal static Blob GetSuffixBlob(Blob container, Blob blob) => new Blob(container.Buffer, blob.Start + blob.Length, container.Start + container.Length - blob.Start - blob.Length);