System::Net::CookieParser class

CookieParser class

Used to parse a cookie header and create an instance of the Cookie class. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

class CookieParser : public System::Object

Methods

MethodDescription
static CheckQuoted(String)Checks if the specified string is wrapped in the quotes.
CookieParser(String)RTTI information.
Get()Returns an instance based on the specified string.
GetServer()Gets the server cookie.
GetString()Returns the string representation of a cookie header.

See Also