HeaderNames (HttpResponse function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
{{Template:HttpResponse:HeaderNames subtitle}}
<span class="pageSubtitle"><section begin=dpl_desc/><section end=dpl_desc/></span>
[[Category:HttpResponse methods|HeaderNames property]]
<p>
<var>HeaderNames</var> is a member of the <var>[[HttpResponse class|HttpResponse]]</var> class.
</p>


This method helps you retrieve the HTTP
This method helps you retrieve the HTTP
Line 11: Line 6:
headers returned.
headers returned.
==Syntax==
==Syntax==
<p class="syntax">%sl = %httpresp:HeaderNames
{{Template:HttpResponse:HeaderNames syntax}}
</p>
 
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
Line 23: Line 16:


</td></tr></table>
</td></tr></table>
==See also==
{{Template:HttpResponse:HeaderNames footer}}

Revision as of 21:44, 17 June 2011

List of HTTP response header names (HttpResponse class)


This method helps you retrieve the HTTP response headers returned by an HTTP request. HeaderNames returns a Stringlist object that lists the names of the HTTP response headers returned.

Syntax

%sl = httpResponse:HeaderNames

Syntax terms

%sl A stringlist object variable for the assignment of the returned headers of %httpresp.
%httpresp A reference to an HTTPResponse object that was returned by a Get, Post, or Send method of an HTTPRequest object.

See also