|
||
class RHTTPRequest : public RHTTPMessage;
An HTTP Request. This class extends the abstract HTTP Message to add an HTTP method to be invoked on the resource at the remote HTTP server, and the URL that identifies that resource.
RHTTPMessage
- An abstract HTTP message. In RFC2616, an HTTP message is defined as having a hea...
RHTTPRequest
- An HTTP Request. This class extends the abstract HTTP Message to add an HTTP met...
Defined in RHTTPRequest
:
Method()const
Gets the method name SetMethod(RStringF)
Sets the method name SetURIL(const TUriC8 &)
Sets the URI URI()const
Gets the URI Inherited from RHTTPMessage
:
Body()const
Gets the body. The body is supplied as a MHTTPDataSupplier, which can be used to...GetHeaderCollection()
Returns the header collection for the message HasBody()const
Determine whether this message has any associated body data. RemoveBody()
Removes the body SetBody(MHTTPDataSupplier &)
Sets the messages body, replacing any existing body. The body is supplied as a M...iImplementation
IMPORT_C RStringF Method() const;
Gets the method name
|
IMPORT_C const TUriC8& URI() const;
Gets the URI
|
IMPORT_C void SetMethod(RStringF aMethod);
Sets the method name
|
IMPORT_C void SetURIL(const TUriC8 &aURI);
Sets the URI
|