|
|
LONGCHAR Decode (character)
|
/* Decodes an encoded string
Uses OpenEdge.Net.HTTP.PercentEncoder:Decode() to perform the decoding
@param character An encoded string
@return longchar A decoded string */
|
|
|
LONGCHAR Decode (character, character)
|
/** Attempts to decode a previously-encoded string.
Uses OpenEdge.Net.HTTP.PercentEncoder:Decode() to perform the decoding
@param character The string to decode
@param character The target codepage to encode into.
@return character A decoded URL
@throws AppError If the encoding is malformed */
|
|
|
CHARACTER Encode (longchar)
|
/* Encodes a string using form encoding.
Uses OpenEdge.Net.HTTP.PercentEncoder:Encode() to perform the encoding
@param longchar The string to encode. This is longchar since it can handle unicode data even when the session can't.
We dono t expect this to contain GB's of data.
@return character A percent-encoded string */
|