ServicePointManagerElement.Expect100Continue Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a Boolean value that determines whether 100-Continue behavior is used.
public:
property bool Expect100Continue { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("expect100Continue", DefaultValue=true)]
public bool Expect100Continue { get; set; }
[<System.Configuration.ConfigurationProperty("expect100Continue", DefaultValue=true)>]
member this.Expect100Continue : bool with get, set
Public Property Expect100Continue As Boolean
Property Value
true
to expect 100-Continue responses for POST
requests; otherwise, false
. The default value is true
.
- Attributes
Remarks
When this property is set to true
, client requests that use the POST
method expect to receive a 100-Continue response from the server to indicate that the client should send the data to be posted. This mechanism allows clients to avoid sending large amounts of data over the network when the server, based on the request headers, intends to reject the request.
For additional information, see ServicePointManager.Expect100Continue.