Function CSPSetCookieSet::operator []()
Description:
Retrieves a cookie by index.
 |
Prototype:
CSPSetCookie& operator [](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[ ulCookieCount ] = "Vanilla";
See also:
member function GetCookie( unsigned long ), operator () (), GetCookie( const CSPString& )
|
|