|
Options |
Name |
Purpose |
|
|
|
ClearCookies ()
|
/** Removes all cookies from this message */ Inherited from OpenEdge.Net.HTTP.IHttpMessage
|
|
|
|
ClearHeaders ()
|
/** Removes all headers from this message */ Inherited from OpenEdge.Net.HTTP.IHttpMessage
|
|
|
|
LONGCHAR GetContextValue (character)
|
/* Get a value from the request context
@param character The name context property name
@return longchar The content property value */
|
|
|
|
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 */ Overrides OpenEdge.Net.HTTP.IHttpMessage:GetCookie (character)
|
|
|
|
INTEGER GetCookies (Cookie[])
|
/** Returns all the cookies for this message
@param Cookie[] An array of cookies
@return integer The number of cookies returned */ Inherited from OpenEdge.Net.HTTP.IHttpMessage
|
|
|
|
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. */ Inherited from OpenEdge.Net.HTTP.IHttpMessage
|
|
|
|
INTEGER GetHeaders (HttpHeader[])
|
/** Returns all the headers
@param HttpHeader[] An array of headers
@return integer The number of headers returned */ Inherited from OpenEdge.Net.HTTP.IHttpMessage
|
|
|
|
CHARACTER GetPathParameter (character)
|
/* Get the parameter value that corresponds to the defined URI mapping
that invoked the handler for this request
Example:
URI mapping defined in openedge.properties /customers/{custname}/orders/{ordernum}
Requested URI /customers/Andersen/orders/7
GetPathParameter("custname") will return "Andersen"
GetPathParameter("ordernum") will return "7"
@param character name defined with curly braces in URI mapping
@return character The path parameter value */
|
|
|
|
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 */ Overrides OpenEdge.Net.HTTP.IHttpMessage:HasCookie (character)
|
|
|
|
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 */ Inherited from OpenEdge.Net.HTTP.IHttpMessage
|
|
|
|
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 */ Inherited from OpenEdge.Net.HTTP.IHttpMessage
|
|
|
|
RemoveCookie (character)
|
/** Removes cookies from this message for a given name
@param character The name of the cookie(s) to remove. */ Overrides OpenEdge.Net.HTTP.IHttpMessage:RemoveCookie (character)
|
|
|
|
RemoveCookie (Cookie)
|
/** Removes a cookie from this message
@param Cookie The cookie to remove. */ Inherited from OpenEdge.Net.HTTP.IHttpMessage
|
|
|
|
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 */ Inherited from OpenEdge.Net.HTTP.IHttpMessage
|
|
|
|
SetCookie (Cookie)
|
/** Adds a cookie to this message
@param Cookie The cookie to add. */ Inherited from OpenEdge.Net.HTTP.IHttpMessage
|
|
|
|
SetCookies (Cookie[])
|
/** Adds cookies to this message
@param Cookie[] An array of cookies to add. */ Inherited from OpenEdge.Net.HTTP.IHttpMessage
|
|
|
|
SetHeader (HttpHeader)
|
/** Adds header info to this message's collection of headers.
@param HttpHeader The header */ Inherited from OpenEdge.Net.HTTP.IHttpMessage
|
|
|
|
SetHeaders (HttpHeader[])
|
/** Adds a set of header info to this message's collection of headers.
@param HttpHeader[] An array of headers */ Inherited from OpenEdge.Net.HTTP.IHttpMessage
|