|
Options |
Name |
Purpose |
|
|
ClearCookies ()
|
/** Removes all cookies from this message */
|
|
|
ClearHeaders ()
|
/** Removes all headers from this message */
|
|
|
OpenEdge.Net.HTTP.Cookie GetCookie (character)
|
/** Returns a cookie by name from this message. Typically
returns the first cookie it finds by name, oif more than
one exist
@param character The cookie's name to check
@return Cookie The (first) cookie found by name */
|
|
|
INTEGER GetCookies (Cookie[])
|
/** Returns all the cookies for this message
@param Cookie[] An array of cookies
@return integer The number of cookies returned */
|
|
|
OpenEdge.Net.HTTP.HttpHeader GetHeader (character)
|
/** Returns a named header
@param character The name of the header to retrieve
@return HttpHeader The header object. Null if not exists. */
|
|
|
INTEGER GetHeaders (HttpHeader[])
|
/** Returns all the headers
@param HttpHeader[] An array of headers
@return integer The number of headers returned */
|
|
|
LOGICAL HasCookie (character)
|
/** Indicates whether a cookie exists for this message
@param character The cookie's name to check
@return logical TRUE if this message contains the cookie */
|
|
|
LOGICAL HasCookie (Cookie)
|
/** Indicates whether a cookie exists for this message
@param Cookie The cookie to check
@return logical True if this message contains the cookie */
|
|
|
LOGICAL HasHeader (character)
|
/** Indicates whether a header exists for this message or not.
@param character The name of a header to check
@return logical True if this message contains the header */
|
|
|
RemoveCookie (character)
|
/** Removes coolies from this message for a given name
@param character The name of the cookie(s) to remove. */
|
|
|
RemoveCookie (Cookie)
|
/** Removes a cookie from this message
@param Cookie The cookie to remove. */
|
|
|
RemoveHeader (character)
|
/** Removes all headers with a given name from the set of message headers.
No-op if none exists.
@param character The name of the header to remove */
|
|
|
SetCookie (Cookie)
|
/** Adds a cookie to this message
@param Cookie The cookie to add. */
|
|
|
SetCookies (Cookie[])
|
/** Adds cookies to this message
@param Cookie[] An array of cookies to add. */
|
|
|
SetHeader (HttpHeader)
|
/** Adds header info to this message's collection of headers.
@param HttpHeader The header */
|
|
|
SetHeaders (HttpHeader[])
|
/** Adds a set of header info to this message's collection of headers.
@param HttpHeader[] An array of headers */
|