AutoSendXmlContentType (HttpRequest property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (match syntax table to syntax template; edits, tags and links)
m (consistent true and false)
Line 1: Line 1:
{{Template:HttpRequest:AutoSendXmlContentType subtitle}}
{{Template:HttpRequest:AutoSendXmlContentType subtitle}}
The <var>AutoSendXmlContentType</var> property sets or returns a <var>[[Boolean_enumeration|Boolean enumeration]]</var> (<var>True</var> or <var>False</var>) that indicates whether <var>[[AddXml (HttpRequest subroutine)|AddXml]]</var> automatic content-type header generation is on or off.  
The <var>AutoSendXmlContentType</var> property sets or returns a <var>[[Boolean_enumeration|Boolean enumeration]]</var> (<code>True</code> or <code>False</code>) that indicates whether <var>[[AddXml (HttpRequest subroutine)|AddXml]]</var> automatic content-type header generation is on or off.  


==Syntax==
==Syntax==
Line 7: Line 7:
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>currentBoolean</th>
<tr><th>currentBoolean</th>
<td>The current value (<var>True</var> or <var>False</var>) of <var class="term">httpRequest</var>'s <var>AutoSendXmlContentType</var> property.
<td>The current value (<code>True</code> or <code>False</code>) of <var class="term">httpRequest</var>'s <var>AutoSendXmlContentType</var> property.
</td></tr>
</td></tr>
<tr><th>httpRequest</th>
<tr><th>httpRequest</th>
Line 13: Line 13:
</td></tr>
</td></tr>
<tr><th>newBoolean</th>
<tr><th>newBoolean</th>
<td>The new <var>Boolean enumeration</var> value (<var>True</var> or <var>False</var>) to assign to <var class="term">httpRequest</var>'s <var>AutoSendXmlContentType</var> property.
<td>The new <var>Boolean enumeration</var> value (<code>True</code> or <code>False</code>) to assign to <var class="term">httpRequest</var>'s <var>AutoSendXmlContentType</var> property.
</td></tr></table>
</td></tr></table>


Line 20: Line 20:
<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.  To suppress this automatic generation, you set <var>AutoSendXmlContentType</var> to <var>False</var>.
<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.  To suppress this automatic generation, you set <var>AutoSendXmlContentType</var> to <var>False</var>.
</ul>
</ul>
==See also==
==See also==
<ul><li>For more general information and background about using Enumerations, see [[Enumerations|"Enumerations"]].
<ul><li>For more general information and background about using Enumerations, see [[Enumerations|"Enumerations"]].
</ul>
</ul>
{{Template:HttpRequest:AutoSendXmlContentType footer}}
{{Template:HttpRequest:AutoSendXmlContentType footer}}

Revision as of 00:37, 19 June 2011

Automatic content-type header generation? (HttpRequest class)

The AutoSendXmlContentType property sets or 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

currentBoolean The current value (True or False) of httpRequest's AutoSendXmlContentType property.
httpRequest A previously defined and instantiated HttpRequest object.
newBoolean The new Boolean enumeration value (True or False) to assign to httpRequest'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.

See also

  • For more general information and background about using Enumerations, see "Enumerations".