'Declaration Public Function IsLoadingPageEx( _ ByVal waitForPageLoadEvent As Boolean, _ ByVal waitForRenderStartEvent As Boolean, _ ByVal httpIdleSecs As Integer _ ) As Boolean
public bool IsLoadingPageEx( bool waitForPageLoadEvent, bool waitForRenderStartEvent, int httpIdleSecs )
Parameters
- waitForPageLoadEvent
- Set to true to wait until the Page Load event is detected.
- waitForRenderStartEvent
Set to true to wait until the Render Start event is detected.
The Render Start event may not be detected if the browser window is not visible.- httpIdleSecs
The number of seconds of HTTP inactivity required, e.g. the value of 5 would indicate that no HTTP request should have been executing for 5 seconds for the wait condition to be satisfied.
Use -1 to indicate that no HTTP inactivity is required.