Location:
chttpformencoder.h
Link against: http.lib
class CHTTPFormEncoder : public CBase, public MHTTPDataSupplier;
A data supplier class that is used to build up data that is to be encoded to application/x-www-form-urlencoded.
A client will create an instance of this class and add name/value pairs. They then use this as the data supplier for the body of an http request that is a forms submission.
The name and value must both be supplied in the correct character encoding that you want to send to the server. This then gets url encoded.
MHTTPDataSupplier
- A data supplier - This class is used to deliver the response data to the client, and is also used by the client to supply
request body data to HTTP in POST transactions
CBase
- Base class for all classes to be instantiated on the heap
CHTTPFormEncoder
- A data supplier class that is used to build up data that is to be encoded to application/x-www-form-urlencoded
Defined in CHTTPFormEncoder
:
AddFieldL()
, GetNextDataPart()
, NewL()
, OverallDataSize()
, ReleaseData()
, Reset()
, ~CHTTPFormEncoder()
Inherited from CBase
:
Delete()
,
Extension_()
,
operator new()
Inherited from MHTTPDataSupplier
:
MHDS_Reserved1()
,
MHDS_Reserved2()
,
MHDS_Reserved3()
virtual TBool GetNextDataPart(TPtrC8 &aDataPart);
Obtain a data part from the supplier. The data is guaranteed to survive until a call is made to ReleaseData()
.
|
|
virtual void ReleaseData();
Release the current data part being held at the data supplier. This call indicates to the supplier that the part is no longer needed, and another one can be supplied, if appropriate.
virtual TInt OverallDataSize();
Obtain the overall size of the data being supplied, if known to the supplier. Where a body of data is supplied in several parts this size will be the sum of all the part sizes. If the size is not known, KErrNotFound is returned; in this case the client must use the return code of GetNextDataPart to find out when the data is complete.
|
virtual TInt Reset();
Reset the data supplier. This indicates to the data supplier that it should return to the first part of the data. This could be used in a situation where the data consumer has encountered an error and needs the data to be supplied afresh. Even if the last part has been supplied (i.e. GetNextDataPart has returned ETrue), the data supplier should reset to the first part.
If the supplier cannot reset it should return an error code; otherwise it should return KErrNone, where the reset will be assumed to have succeeded
|
IMPORT_C void AddFieldL(const TDesC8 &aFieldName, const TDesC8 &aFieldValue);
Adds a field to the data. A field consists a name and value pair
|
|
|