Function CSPSetCookieSet::operator()()
Description:
Retrieves a cookie by name.
 |
Prototype:
CSPSetCookie& operator()(const CSPString& strName);
Arguments:
- const CSPString& strName [IN]
The name of the requested cookie.
Return value:
Returns a reference to the cookie requested.
Remarks:
If the cookie does not exists, a new cookie is first automatically created, and then the reference to it is returned.
Examples:
Response.Cookies( "mycookie" ) = "Vanilla";
See also:
member function GetCookie( const CSPString& ), operator [] (), GetCookie( unsigned long )
|
|