VB.Net HTTP Wrapper by Kitsune.
Hello I am new to Logical Gamers, and i wanted to share my basic VB.Net HttpWrapper.
I'm a newbie coder and have been attempting Gaiaonline's login, haven't succeeded yet but im still giving it a try.
Anyway here is my wrapper class: TinyUpload.com - best file hosting solution, with no limits, totaly free
May need Imports:
Code:
Imports System.IO, System.Net
Usage Example:
Code:
Dim Wrapper As New Wrapper()
dim html as string
'(HTML AS RESPONSE, URL, METHOD, POSTdata, Refferer)
Wrapper.Webrequest(html, "Http://www.blah.com", POST, "data+data+data", "")
Wrapper.Webrequest(html, "Http://www.blah.com", GET, "", "")
Let me know if there is anything you want me to add or have any suggestions.