|
|
INT64 Write (character)
|
/** Write data to/from the message
@param character Data to write
@return int64 The number ofbytes written */
|
|
|
Progress.Json.ObjectModel.JsonObject Write (Cookie)
|
/* Writes an HTTP Cookie into a JSON property & value
@param Cookie THe cookie to write */
|
|
|
INT64 Write (handle)
|
/** Write data to/from the message
@param handle Data to write
@return int64 The number ofbytes written */
|
|
|
Progress.Json.ObjectModel.JsonObject Write (HttpHeader)
|
/* Writes an HTTP header into a JSON property & value
@param HttpHeader The header to write */
|
|
|
INT64 Write (longchar)
|
/** Write data to/from the message
@param longchar Data to write
@return int64 The number ofbytes written */
|
|
|
INT64 Write (memptr)
|
/** Write data to/from the message
@param memptr Data to write
@return int64 The number ofbytes written */
|
|
|
INT64 Write (Object)
|
/** Write data to/from the message
@param Progress.Lang.Object Data to write
@return int64 The number ofbytes written
@throws P.L.AppError if an type is not supported */
|
|
|
INT64 WriteHandle (handle)
|
/** Write data to/from the message
@param handle Data to write
@return int64 The number ofbytes written */
|
|
|
WriteTuple (Object, Object)
|
/* Writes a tuple (key-value pair) as a JSON property & value
@param Progress.Lang.Object The key value - property name (required)
@param Progress.Lang.Object A value to be written for teh proeprty. May be null. */
|