View RSS Feed

newdigital

mql5 possibilities - WebRequest

Rate this Entry
by , 06-03-2014 at 12:00 PM (4604 Views)
      
   
WebRequest

Sends HTTP request to the specified server.

Code:
int  WebRequest(
   const string      method,           // HTTP request method
   const string      url,              // url address
   const string      cookie,           // cookie
   const string      referer,          // referer
   int               timeout,          // timeout
   const char        &data[],          // array with HTTP request message
   int               data_size,        // size of data[] array
   char              &result[],        // server response data array
   string            &result_headers   // server response headers
   );
More info is here

Submit "mql5 possibilities - WebRequest" to Google Submit "mql5 possibilities - WebRequest" to del.icio.us Submit "mql5 possibilities - WebRequest" to Digg Submit "mql5 possibilities - WebRequest" to reddit

Comments