IServiceFactory public interface IServiceFactory Represents the factory to create arbitrary (third-party) services. Documentation Code namespace AngleSharp.Services { public interface IServiceFactory { TService Create<TService>(IBrowsingContext context); } }