| HttpObjectSetCookieValue Full Description |   | 
| Syntax   define function HttpObjectSetCookieValue
              modifiable  stream HttpObject
     for      value       stream CookieName
     to       value       stream CookieValue
Purpose This function sets a named cookie value in an HTTP request or response object. Usually,  Input arguments: 
 Example:
 ; HttpObjectSetCookieValue local HttpRequest my-Request local HttpResponse my-Response HttpObjectSetCookieValue my-Request for "DocUserID" to "123abc456" HttpObjectSetCookieValue my-Response for "DocUserID" to "123abc456" |