VB.NET counterpart to the java URL Class

  • Thread starter Thread starter samadams_2006
  • Start date Start date
S

samadams_2006

Hello,

I'm interesting in finding out the VB.NET alternative to the URL Class.
For example, in Java you can have the following:

------------------------------------------------------------------------------------------------------------------------------------

URL url = new URL("http://finance.yahoo.com/q?s=AOL");

InputStream abc = url.openStream();

BufferedInputStream bufIn = new BufferedInputStream(abc);
 
Hi,

See System.Net.WebClient (or related classes if you need lower level)
 
I'm interesting in finding out the VB.NET alternative to the URL Class.
For example, in Java you can have the following:

'WebClient', 'WebRequest'.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top