wwCookie::ExtraContent

Optional - Allows adding explicit content to the end of the Cookie string generated.

This property lets you extend cookie behavior to features that might not be addressed by the properties on this object. It is appended to the end of the cookie string generated and allows you to set any custom settings or new features that might not be covered by the existing properties.

Note this code does the following inside of the ToString() generation code:

IF !EMPTY(this.ExtraContent)
   lcCookie = lcCookie + "; " + this.ExtraContent
ENDIF
o.ExtraContent

See also:

Class wwCookie

© West Wind Technologies, 1996-2022 • Updated: 10/31/19
Comment or report problem with topic