Using client As New WebClient()
Dim responseArray As Byte() = client.UploadFile(strUrl, strFileToUpload)
End Using
How does the above need to be modified in order to use a proxy? What is the best way to specify the proxy server and port in the above scenario?