Is WebBrowser.Stop() then WebBrowser.Navigate() Redundant?
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.
精彩评论