开发者

Is WebBrowser.Stop() then WebBrowser.Navigate() Redundant?

开发者 https://www.devze.com 2023-03-03 16:15 出处:网络
Are these equivalent? WebBrowser开发者_StackOverflow.Navigate(\'http://google.com\'); and WebBrowser.Stop();

Are these equivalent?

WebBrowser开发者_StackOverflow.Navigate('http://google.com');

and

WebBrowser.Stop();
WebBrowser.Navigate('http://google.com');

The MSDN documentation doesn't say.


Looking through reflector, it doesn't appear that Navigate() calls Stop(), so no.

0

精彩评论

暂无评论...
验证码 换一张
取 消