Icon RequestContent Property

property RequestContent: String

Usage

Available In: Server Applications

Contains any textual content included with the web server request. If the RequestContentType property is set to one of the following:

MIME TypeDescription
text/plainPlain text
text/htmlHTML
text/xmlXML
application/xmlXML
application/jsonJSON
application/javascriptJavaScript
application/pdfPDF document

then the included content will be available in this property. If the RequestContentType property contains any other value, then the included content will need to be accessed using the RequestContentStream property.

Information If the character set is set as part of the RequestContentType property using the charset attribute, then it must be set to "utf-8". If the character set is set to a different value, then the included content will need to be accessed using the RequestContentStream property.
Image