AutoSendXmlContentType (HttpRequest property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 1: Line 1:
{{Template:HttpRequest:AutoSendXMLContentType subtitle}}
{{Template:HttpRequest:AutoSendXmlContentType subtitle}}


This property sets and returns a <var>Boolean</var> enumeration
This property sets and returns a <var>Boolean</var> enumeration
(<var>True</var> or <var>False</var>)
(<var>True</var> or <var>False</var>)
that indicates whether <var>[[AddXML (HttpRequest subroutine)|AddXML]]</var> automatic
that indicates whether <var>[[AddXml(HttpRequest subroutine)|AddXml]]</var> automatic
content-type header generation is on or off.
content-type header generation is on or off.
==Syntax==
==Syntax==
{{Template:HttpRequest:AutoSendXMLContentType syntax}}
{{Template:HttpRequest:AutoSendXmlContentType syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
Line 21: Line 21:
==Usage notes==
==Usage notes==
<ul>
<ul>
<li>The <var class="product">HTTP Helper</var> <var>[[AddXML (HttpRequest subroutine)|AddXML]]</var> method generates a content type header of "text/xml" upon a Post, if you do not explicitly set a
<li>The <var class="product">HTTP Helper</var> <var>[[AddXml (HttpRequest subroutine)|AddXml]]</var> method generates a content type header of "text/xml" upon a Post, if you do not explicitly set a
content-type HTTP request header via the <var>[[AddHeader (HttpRequest subroutine)|AddHeader]]</var> method.
content-type HTTP request header via the <var>[[AddHeader (HttpRequest subroutine)|AddHeader]]</var> method.
To suppress this automatic generation, you set
To suppress this automatic generation, you set
Line 28: Line 28:
</ul>
</ul>
==See also==
==See also==
{{Template:HttpRequest:AutoSendXMLContentType footer}}
{{Template:HttpRequest:AutoSendXmlContentType footer}}

Revision as of 20:28, 16 June 2011

Automatic content-type header generation? (HttpRequest class)


This property sets and returns a Boolean enumeration (True or False) that indicates whether AddXml automatic content-type header generation is on or off.

Syntax

%currentBoolean = httpRequest:AutoSendXmlContentType httpRequest:AutoSendXmlContentType = newBoolean

Syntax terms

%curr The value (True or False) of %httpreq's AutoSendXMLContentType property.
%httpreq A previously defined and instantiated HttpRequest object.
newvalue The Boolean enumeration value (True or False) to assign to %httpreq's AutoSendXMLContentType property.

Usage notes

  • The HTTP Helper AddXml method generates a content type header of "text/xml" upon a Post, if you do not explicitly set a content-type HTTP request header via the AddHeader method. To suppress this automatic generation, you set AutoSendXMLContentType to False.
  • For information about Enumerations, see "Enumerations".

See also