Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

HttpWebRequestElement::MaximumUnauthorizedUploadLength Property

 

Gets or sets the maximum length of an upload in response to an unauthorized error code.

Namespace:   System.Net.Configuration
Assembly:  System (in System.dll)

public:
[ConfigurationPropertyAttribute("maximumUnauthorizedUploadLength", 
	DefaultValue = -1)]
property int MaximumUnauthorizedUploadLength {
	int get();
	void set(int value);
}

Property Value

Type: System::Int32

A 32-bit signed integer containing the maximum length (in multiple of 1,024 byte units) of an upload in response to an unauthorized error code. A value of -1 indicates that no size limit will be imposed on the upload. Setting the MaximumUnauthorizedUploadLength property to any other value will only send the request body if it is smaller than the number of bytes specified. So a value of 1 would indicate to only send the request body if it is smaller than 1,024 bytes.

The default value for this property is -1.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft