Represents error that occur when request length is greater than allowed value.

Namespace:  EasyAlgo.EAUpload
Assembly:  EasyAlgo.EAUpload (in EasyAlgo.EAUpload.dll)
Version: 1.3.2.0

Syntax

C#
public class EAUploadRequestLengthExceeded : EAUploadException
Visual Basic (Declaration)
Public Class EAUploadRequestLengthExceeded _
	Inherits EAUploadException

Remarks

This error may occur if request size is is greater than value that is specified by "maxRequestLength" parameter of system.web/httpRuntime section or by UploadEnvironment..::.MaxRequestLength property.

Note: This exception is thrown every time regardless of UploadEnvironment..::.ThrowErrorsImmediately property value or ThrowErrorsImmediately parameter of EAUpload configuration.


Note: If ProcessRequestOnError is specified as flase and an exception occurs at the request reading stage then there is no way to send a some response to the client(browser), therefore redirection and generic errors are not working.

Inheritance Hierarchy

System..::.Object
  System..::.Exception
    System..::.ApplicationException
      EasyAlgo.EAUpload..::.EAUploadException
        EasyAlgo.EAUpload..::.EAUploadRequestLengthExceeded

See Also