WaitOption Class
Wait until navigation.
Inheritance
System.Object
WaitOption
Namespace: Syncfusion.HtmlConverter
Assembly: Syncfusion.HtmlConverter.Base.dll
Syntax
public static class WaitOption : Object
Fields
DomContentLoaded
Consider navigation to be finished when the DOMContentLoaded event is fired. Does not wait for external resources such as Images, Styles and Scripts to finish loading.
Declaration
public const string DomContentLoaded = "DOMContentLoaded"
Field Value
| Type |
|---|
| System.String |
Load
Consider navigation to be finished when the load event is fired. Wait for all external resources such as Images, Styles and Scripts to finish loading.
Declaration
public const string Load = "Load"
Field Value
| Type |
|---|
| System.String |
NetworkIdle0
Consider navigation to be finished when there are no more than 0 network connections for at least 500 ms.
Declaration
public const string NetworkIdle0 = "Networkidle0"
Field Value
| Type |
|---|
| System.String |
NetworkIdle2
Consider navigation to be finished when there are no more than 2 network connections for at least 500 ms.
Declaration
public const string NetworkIdle2 = "Networkidle2"
Field Value
| Type |
|---|
| System.String |
None
Don't wait for any particular event.
Declaration
public const string None = "None"
Field Value
| Type |
|---|
| System.String |