WebViewControlLongRunningScriptDetectedEventArgs.ExecutionTime Property

Definition

Gets the number of milliseconds that the IWebViewControl has been executing a long-running script.

public:
 property TimeSpan ExecutionTime { TimeSpan get(); };
TimeSpan ExecutionTime();
public System.TimeSpan ExecutionTime { get; }
var timeSpan = webViewControlLongRunningScriptDetectedEventArgs.executionTime;
Public ReadOnly Property ExecutionTime As TimeSpan

Property Value

The number of milliseconds the script has been running.

Remarks

If the script is still running after 5 seconds, the app will hang. To halt the script, set the StopPageScriptExecution property to true. The halted script will not resume for the lifetime of the IWebViewControl unless it is reloaded during a subsequent IWebViewControl navigation.

Applies to