CHttpArg Structure
Visual Studio 2005
Stores the information about a single parameter-value pair sent to your HTTP server extension.
struct CHttpArg {
LPCTSTR m_pstrRaw;
LPCTSTR m_pstrParam;
LPCTSTR m_pstrValue;
};
CHttpArg does not have a base class.
A CHttpArg structure has three data members that contain the unparsed raw data, the parsed parameter, and the parsed argument for the client's request.
See CHttpArgList for more detailed information.