|
||
class THTTPHdrFieldIter;
Iterator class to iterate the fields within a RHTTPHeaders
.
Defined in THTTPHdrFieldIter
:
AtEnd()const
Check if the iterator is at the end of the collection. If so, further calls to o...First()
Reset iterator to point at the first field in the header collectionTHTTPHdrFieldIter(const CHeaders *)
Construct an iterator for the fields of the supplied header collection. operator()()
Obtain the name of the header field currently pointed at by the iterator. operator++()
Advance the iterator to the next field. ~THTTPHdrFieldIter()
Class destructorinline THTTPHdrFieldIter(const CHeaders *aHeaders);
Construct an iterator for the fields of the supplied header collection.
|
IMPORT_C void First();
Reset iterator to point at the first field in the header collection
IMPORT_C TBool AtEnd() const;
Check if the iterator is at the end of the collection. If so, further calls to operator() will return NULL.
|
IMPORT_C RStringTokenF operator()();
Obtain the name of the header field currently pointed at by the iterator.
|