Function CSPGetCookieSet::GetCookie()
Description:
Retrieves a cookie by name.
 |
Prototype:
const CSPGetCookie& GetCookie(const CSPString& strName) const;
Arguments:
- const CSPString& strName [IN]
The name of the requested cookie.
Return value:
Returns a reference to the requested cookie.
Examples:
CSPString strCookie = Request.Cookies.GetCookie( "mycookie" ).Value;
See also:
member functions operator (), GetCookie( unsigned long ), operator []
|
|