Function CSPSetCookieSet::GetCookie()
Description:
Retrieves a cookie by index.
 |
Prototype:
CSPSetCookie& GetCookie(unsigned long ulIndex);
Arguments:
- unsigned long ulIndex [IN]
The index of the cookie.
Return value:
Returns a reference to the cookie requested.
Examples:
unsigned long ulCookieCount = Response.Cookies.GetCount(); Response.Cookies.GetCookie( ulCookieCount ) = "Vanilla";
See also:
member function operator [] (), GetCookie( const CSPString& ), operator () ()
|
|