Class PageTransitionEvent
- Namespace
- AngleSharp.Dom.Events
- Assembly
- AngleSharp.dll
Represents a page transition event argument.
[DomName("PageTransitionEvent")]
public class PageTransitionEvent : Event
- Inheritance
-
PageTransitionEvent
- Inherited Members
- Extension Methods
Constructors
PageTransitionEvent()
Creates a new event.
public PageTransitionEvent()
PageTransitionEvent(string, bool, bool, bool)
Creates a new event and initializes it.
[DomConstructor]
[DomInitDict(1, true)]
public PageTransitionEvent(string type, bool bubbles = false, bool cancelable = false, bool persisted = false)
Parameters
type
stringThe type of the event.
bubbles
boolIf the event is bubbling.
cancelable
boolIf the event is cancelable.
persisted
boolIndicates if a webpage is loading from a cache.
Properties
IsPersisted
Gets if a webpage is loading from a cache..
[DomName("persisted")]
public bool IsPersisted { get; }
Property Value
Methods
Init(string, bool, bool, bool)
Initializes the event.
[DomName("initPageTransitionEvent")]
public void Init(string type, bool bubbles, bool cancelable, bool persisted)