IFileList
Represents a list of files.
http://dev.w3.org/2006/webapi/FileAPI/#dfn-filelist
using AngleSharp.Attributes;
using System.Collections;
using System.Collections.Generic;
namespace AngleSharp.Dom.Io
{
[DomName("FileList")]
public interface IFileList : IEnumerable<IFile>, IEnumerable
{
[DomName("item")]
[DomAccessor(Accessors.Getter)]
IFile this[int index] { get; }
[DomName("length")]
int Length { get; }
void Add(IFile file);
bool Remove(IFile file);
void Clear();
}
}