IEventFactory
Represents a factory to create event data.
using System.Runtime.CompilerServices;
namespace AngleSharp.Dom.Events
{
[System.Runtime.CompilerServices.NullableContext(1)]
public interface IEventFactory
{
[return: System.Runtime.CompilerServices.Nullable(2)]
Event Create(string name);
}
}