|
|
Open ()
|
/* If nothing's passed in, use a bucket of our own.
Don't do this in the constructor as a micro-optimisation (yes, I know) */
|
|
|
INT64 Write (longchar)
|
/* Writes character data as form data. This data is assumed to be form-encoded already
@param longchar The form data
@return int64 The number of bytes written. */
|
|
|
INT64 Write (Object)
|
/* Writes form data. Types accepted are
- implements ILongcharHolder , ICharacterHolder: these are treated as longchar (ie assumed encoded)
- implements IStringStringMap: the key and value are form-encoded before writing
@param Object The form data
@return int64 The number of bytes written. */
|