ILoader public interface ILoader Represents the basic interface for all loaders. Documentation Code using System.Collections.Generic; namespace AngleSharp.Network { public interface ILoader { IEnumerable<IDownload> GetDownloads(); } }