.NET API 1,189,376 bytes
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; }
}
}