Adds a fully self contained POST buffer to the request. Works for XML or previously encoded content.
Adds a fully self contained POST buffer to the request. Works for XML or previously encoded content.
public void AddPostKey(string);
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,byte[]);
public void AddPostKey(string,string);
HttpWebComm Class | Whisperstream.SMSProcessor.Utility Namespace