List of HttpRequest methods: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Automatically generated page update)
 
m (Automatically generated page update)
Line 8: Line 8:
<tr><td valign="top">[[AddField (HttpRequest subroutine)|AddField]]</td><td valign="top">Add a form field to the request</td></tr>
<tr><td valign="top">[[AddField (HttpRequest subroutine)|AddField]]</td><td valign="top">Add a form field to the request</td></tr>
<tr><td valign="top">[[AddHeader (HttpRequest subroutine)|AddHeader]]</td><td valign="top">Add a request header</td></tr>
<tr><td valign="top">[[AddHeader (HttpRequest subroutine)|AddHeader]]</td><td valign="top">Add a request header</td></tr>
<tr><td valign="top">[[AddLongString (HttpRequest subroutine)|AddLongString]]</td><td valign="top">Add a longstring to POST data for this request</td></tr>
<tr><td valign="top">[[AddLongstring (HttpRequest subroutine)|AddLongstring]]</td><td valign="top">Add a longstring to POST data for this request</td></tr>
<tr><td valign="top">[[AddXml (HttpRequest subroutine)|AddXml]]</td><td valign="top">Add an XmlDoc to POST data for this request</td></tr>
<tr><td valign="top">[[AddXml (HttpRequest subroutine)|AddXml]]</td><td valign="top">Add an XmlDoc to POST data for this request</td></tr>
<tr><td valign="top">[[AutoSendXmlContentType (HttpRequest property)|AutoSendXmlContentType]]</td><td valign="top">Automatic content-type header generation?</td></tr>
<tr><td valign="top">[[AutoSendXmlContentType (HttpRequest property)|AutoSendXmlContentType]]</td><td valign="top">Automatic content-type header generation?</td></tr>

Revision as of 16:51, 21 June 2011

The following are the available HttpRequest class methods.

MethodDescription
AddFieldAdd a form field to the request
AddHeaderAdd a request header
AddLongstringAdd a longstring to POST data for this request
AddXmlAdd an XmlDoc to POST data for this request
AutoSendXmlContentTypeAutomatic content-type header generation?
FieldCountNumber of fields in the current request
GetSend an HTTP GET request to the server
HeaderCountNumber of headers in this request
HostTarget web server
HttpVersionSet HTTP protocol version for requests
LineEndLine-end sequence for POSTed Stringlist data
MaxRedirectsAutomatically handle redirects
MultiPartFormEncodingUse Stringlists for data transfer?
NewCreate a new HttpRequest object
PageRelative page path
PortTarget server port number
PostSend an HTTP POST request to the server
PrintPrint useful debug information
ProtocolHTTP request protocol
ProxyPermit use of proxy server?
RemoveAuthenticationClear existing username/password credentials
RemoveProxyDisable proxy server use
SendSend an HTTP request to the server
SetAuthenticationIssue username/password credentials
TimeoutSet timeout (in seconds) for HTTP method call
URLTarget HTTP request URL

See also