Chad
Chad

Reputation: 3227

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

Are these equivalent?

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

and

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

The MSDN documentation doesn't say.

Upvotes: 2

Views: 1515

Answers (1)

Bala R
Bala R

Reputation: 108957

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

Upvotes: 2

Related Questions