SetHttpvalue()

Sets the HTTP header name/value for this request. It must be called before any content is flushed to the request

Usage

BOOLEAN = SetHttpvalue( name, value, charset )
Argument Summary
name the name of the HTTP parameter to set
value the value of the HTTP parameter
charset the charset of the value; (optional) [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

SetHttpvalue(
   name=?, 
   value=?, 
   charset=?
);

Supports passing parameters as a structure using ArgumentCollection:

SetHttpvalue( ArgumentCollection={
   name : ?, 
   value : ?, 
   charset : ?
} );