HTTP Client Request Object

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • shannonw@reynolds.com.au

    #1

    HTTP Client Request Object

    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

  • Tom Shelton

    #2
    Re: HTTP Client Request Object


    shannonw@reynol ds.com.au wrote:
    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.WebC lient? There is an example in the docs.

    --
    Tom Shelton

    Comment

    Working...