Chilkat v11.0.0 HttpRequest

🔙 v11 Compatibility Index

The Chilkat.HttpRequest class has the following backward incompatible changes.

Use* methods removed

The following methods have been deprecated and removed from the documentation for a number of years. If an application is still using one of these methods, it should instead set the HttpVerb property, and optionally also the ContentType property.

Removed: UseGet, UseHead, UsePost, UsePostMultipartForm, UsePut, UseUpload, UseUploadPut, UseXmlHttp

The HTTP verbs and Content-Types used by the removed methods were:

  • UseGet: GET, no Content-Type
  • UseHead: HEAD, no Content-Type
  • UsePost: POST, application/x-www-form-urlencoded
  • UsePostMultipartForm: POST, multipart/form-data
  • UsePut: PUT, Content-Type specified elsewhere by the application
  • UseUpload: POST, multipart/form-data
  • UseUploadPut: PUT, multipart/form-data
  • UseXmlHttp: POST, text/xml