AngleSharp by Florian Rappl

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

 IFileList

public interface IFileList
Represents a list of files. http://dev.w3.org/2006/webapi/FileAPI/#dfn-filelist
using AngleSharp.Attributes; namespace AngleSharp.Dom.Io { [DomName("FileList")] public interface IFileList { [DomName("item")] [DomAccessor(Accessors.Getter)] IFile this[int index] { get; } [DomName("length")] int Length { get; } } }