9 references to Blob
System.Reflection.Metadata (9)
System\Reflection\Metadata\BlobBuilder.cs (1)
598
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)
80
public Blob Blob => new
Blob
(_buffer, _start, Length);
System\Reflection\PortableExecutable\PEBuilder.cs (6)
439
yield return new
Blob
(blob.Buffer, blobStart, length);
453
yield return GetPrefixBlob(new
Blob
(blob.Buffer, blobStart, blobLength), strongNameSignatureFixup);
454
yield return GetSuffixBlob(new
Blob
(blob.Buffer, blobStart, blobLength), strongNameSignatureFixup);
459
yield return new
Blob
(blob.Buffer, blobStart, blobLength);
467
internal static Blob GetPrefixBlob(Blob container, Blob blob) => new
Blob
(container.Buffer, container.Start, blob.Start - container.Start);
468
internal static Blob GetSuffixBlob(Blob container, Blob blob) => new
Blob
(container.Buffer, blob.Start + blob.Length, container.Start + container.Length - blob.Start - blob.Length);