HTTP Client Request Object

  • Thread starter Thread starter shannonw
  • Start date Start date
S

shannonw

New to .NET & VB and looking for some code to help me on my way.
Looking particularly for an http request object.

That is:

I want an object I can plug into an application that will accept all
the usual pieces of information (url, request string, key/value pairs
method etc...) that will make the outgoing connection for me and return
the results.

Is there source repositories out there that would have this? I come
from Java where source code was available everywhere - Have I stepped
into a new world now with dotnet?

THanks
 
New to .NET & VB and looking for some code to help me on my way.
Looking particularly for an http request object.

That is:

I want an object I can plug into an application that will accept all
the usual pieces of information (url, request string, key/value pairs
method etc...) that will make the outgoing connection for me and return
the results.

Is there source repositories out there that would have this? I come
from Java where source code was available everywhere - Have I stepped
into a new world now with dotnet?

THanks

How 'bout System.Net.WebClient? There is an example in the docs.
 
Back
Top