Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.71K
~313 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for thewannabe

using System; using System.IO; using System.Net; using System.Text; string remoteURL ="http://cdn.forexfactory.com/ffcal_week_this.xml"; private string getHTTP(string szURL) { HttpWebRequest httpRequest = null; HttpWebResponse httpResponse = null; string bodyText = ""; Stream responseStream = null; Byte[] RecvBytes = new byte[byte.MaxValue]; Int32 bytes; try { httpRequest = (HttpWebRequest)WebRequest.Create(szURL); httpResponse = (HttpWebResponse)httpRequest.GetResponse(); responseStream = httpResponse.GetResponseStream(); …

Member Avatar for microtrends
0
313

The End.