IBlob
Represents a binary large object.
http://dev.w3.org/2006/webapi/FileAPI/#dfn-Blob
using AngleSharp.Attributes;
using System;
using System.IO;
namespace AngleSharp.Dom.Io
{
[DomName("Blob")]
public interface IBlob : IDisposable
{
[DomName("size")]
int Length { get; }
[DomName("type")]
string Type { get; }
[DomName("isClosed")]
bool IsClosed { get; }
Stream Body { get; }
[DomName("slice")]
IBlob Slice(int start = 0, int end = int.MaxValue, string contentType = null);
[DomName("close")]
void Close();
}
}