The HttpWebRequest class has a property called ServicePoint which can be used to change this setting for a specific request. For example:
var req = (HttpWebRequest) WebRequest.Create(...);
req.ServicePoint.Expect100Continue = false;
The HttpWebRequest class has a property called ServicePoint which can be used to change this setting for a specific request. For example:
var req = (HttpWebRequest) WebRequest.Create(...);
req.ServicePoint.Expect100Continue = false;