IEventFactory public interface IEventFactory : IService Represents a factory to create event data. Documentation Code using AngleSharp.Dom.Events; namespace AngleSharp.Services { public interface IEventFactory : IService { Event Create(string name); } }