HttpWebRequestElement::MaximumUnauthorizedUploadLength Property
.NET Framework (current version)
Gets or sets the maximum length of an upload in response to an unauthorized error code.
Assembly: System (in System.dll)
public: [ConfigurationPropertyAttribute("maximumUnauthorizedUploadLength", DefaultValue = -1)] property int MaximumUnauthorizedUploadLength { int get(); void set(int value); }
Property Value
Type: System::Int32A 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
Available since 2.0
Show: