Adds POST form variables to the request buffer. HttpPostMode determines how parms are handled. 1 - UrlEncoded Form Variables. Uses key and value pairs (ie. "Name","Rick") to create URLEncoded content 2 - Multi-Part Forms - not supported 4 - XML block - Post a single XML block. Pass in as Key (1st Parm) other - raw content buffer. Just assign to Key.
public void AddPostKey( string Key, Byte[] Value );
Return Value
void
Parameters
Key
Key value or raw buffer depending on post type
Value
Value to store. Used only in key/value pair modes
Overloads:
public void AddPostKey( string Key, string Value );
public void AddPostKey( string FullPostBuffer );
See also:
Class wwHttp© West Wind Technologies, 2018 • Updated: 12/28/06
Comment or report problem with topic