Function CSPGetCookieSet::GetCookie()
Description:
Retrieves a cookie by index.
 |
Prototype:
const CSPGetCookie& GetCookie(unsigned long ulIndex) const;
Arguments:
- unsigned long ulIndex [IN]
The index of the cookie.
Return value:
Returns a reference to the requested cookie.
Remarks:
Use member function GetCount() to retrieve the number of cookies available.
Examples:
unsigned long ulCookieCount = Request.Cookies.GetCount(); CSPString strCookie = Request.Cookies.GetCookie( ulCookieCount - 1 ).Value;
See also:
member functions operator [], GetCookie( const CSPString& ), operator ()
|
|