The Content of HTTP Request Messages

From RAD Studio
Jump to: navigation, search

Go Up to Accessing Client Request Information


In addition to the header fields, some request messages include a content portion that the Web server application should process in some way. For example, a POST request might include information that should be added to a database accessed by the Web server application.

The unprocessed value of the content is given by the Content property. If the content can be parsed into fields separated by ampersands (&), a parsed version is available in the ContentFields property.

See Also