UploadSettings.AutoRecoveryMaxAttemptCount Property HTML5/Flash Uploader ASP.NET

Supported technologies: HTML 5

Gets or sets a number of tries that should be performed to submit files.

Namespace: Aurigma.ImageUploaderFlash
Assembly: Aurigma.ImageUploaderFlash (in Aurigma.ImageUploaderFlash.dll)

Syntax

C#
public int AutoRecoveryMaxAttemptCount { get; set; }

Property Value

Type: System..Int32

The number of attempts for upload to do (including the very first attempt). If you want to disable automatic resuming feature, set this property to 1.

Default value is 1.

Remarks

By default, HTML5/Flash Uploader will try to recover upload in the following situations:

  • HTTP timeout specified with the ConnectionTimeout property is expired.
  • 500, 502, 503 or any other 5xx HTTP response code is received.

You can override this behavior with AutoRecoveryFilter param.

Time interval between each next retry is configured with the AutoRecoveryTimeout property.

Note

HTML5/Flash Uploader tries to resend the request that has failed. If the request (package) contains more than one file, these files will be resent again. It means that if you use the auto-recovering feature, the optimal value for the FilesPerPackage property would be 1.

See Also

Reference