AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.3" />

 IBlob

public interface IBlob : IDisposable
Represents a binary large object. http://dev.w3.org/2006/webapi/FileAPI/#dfn-Blob
Stream Body { get; }

Gets the stream to the file.

bool IsClosed { get; }

Gets if the stream to the blob is closed.

int Length { get; }

Gets the length of the blob.

string Type { get; }

Gets the mime-type of the blob.

void Close()

Closes the stream to the blob.

IBlob Slice(int start = 0, int end = 2147483647, string contentType = null)

Slices a subset of the blob into a another blob.