WebViewLongRunningScriptDetectedEventArgs.StopPageScriptExecution 属性

定义

停止在 WebView 控件中执行的长时间运行的脚本。

public:
 property bool StopPageScriptExecution { bool get(); void set(bool value); };
bool StopPageScriptExecution();

void StopPageScriptExecution(bool value);
public bool StopPageScriptExecution { get; set; }
var boolean = webViewLongRunningScriptDetectedEventArgs.stopPageScriptExecution;
webViewLongRunningScriptDetectedEventArgs.stopPageScriptExecution = boolean;
Public Property StopPageScriptExecution As Boolean

属性值

Boolean

bool

如果为 true ,则停止脚本;否则为 false

注解

停止的脚本在 WebView 的生存期内不会恢复。 如果脚本在 5 秒后仍在运行,应用将挂起。 若要确定脚本的运行时间,检查 ExecutionTime 属性。

适用于

另请参阅