HttpWebRequest.Expect Property
.NET Framework 4
Gets or sets the value of the Expect HTTP header.
Assembly: System (in System.dll)
Property Value
Type: System.StringThe contents of the Expect HTTP header. The default value is null.
Note |
|---|
The value for this property is stored in WebHeaderCollection. If WebHeaderCollection is set, the property value is lost. |
| Exception | Condition |
|---|---|
| ArgumentException |
Expect is set to a string that contains "100-continue" as a substring. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
So apparently this is why the argument exception...
http://haacked.com/archive/2004/05/15/http-web-request-expect-100-continue.aspx
Bottom line is that HttpWebRequest does automatic adding of 100 continue headers for you. And it's unobvious how to turn off. But apparently it involves System.Net.ServicePointManager.Expect100Continue. Just read the blog?
Bottom line is that HttpWebRequest does automatic adding of 100 continue headers for you. And it's unobvious how to turn off. But apparently it involves System.Net.ServicePointManager.Expect100Continue. Just read the blog?
- 2/22/2012
- ron4fur
Note