PageTransitionEvent
Represents a page transition event argument.
using AngleSharp.Attributes;
namespace AngleSharp.Dom.Events
{
[DomName("PageTransitionEvent")]
public class PageTransitionEvent : Event
{
[DomName("persisted")]
public bool IsPersisted { get; set; }
public PageTransitionEvent()
{
}
[DomConstructor]
[DomInitDict(1, true)]
public PageTransitionEvent(string type, bool bubbles = false, bool cancelable = false, bool persisted = false)
{
Init(type, bubbles, cancelable, persisted);
}
[DomName("initPageTransitionEvent")]
public void Init(string type, bool bubbles, bool cancelable, bool persisted)
{
Init(type, bubbles, cancelable);
IsPersisted = persisted;
}
}
}