Important: The information in this document is obsolete and should not be used for new development.
SetMethod
Sets the method for a form request.
void SetMethod (in char* method);
method
- A pointer to a buffer that contains the method name.
DISCUSSION
This method sets the method the HTTP server should use to process the form. Cyberdog HTTP items support the two most common methods defined by the HTML 2.0 specification,GET
andPOST
.If you subclass
CyberFormExtension
, you must override this method. Your override must not call its inherited method; that is, your override method must implement this method's functionality completely.SEE ALSO
TheSetBody
method (page 223).
TheSetContentType
method (page 224).