Location:
thttphdrfielditer.h
Link against: http.lib
class THTTPHdrFieldIter;
Iterator class to iterate the fields within a RHTTPHeaders
.
Defined in THTTPHdrFieldIter
:
AtEnd()
, First()
, THTTPHdrFieldIter()
, operator()()
, operator++()
, ~THTTPHdrFieldIter()
inline 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.
|