UploadSettings.AutoRecoveryFilter Property HTML5/Flash Uploader ASP.NET

Supported technologies: HTML 5

Gets or sets a filter for the broken upload auto resume feature.

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

Syntax

C#
public string AutoRecoveryFilter { get; set; }

Property Value

Type: System..String

A JSON object containing two arrays - errorCodes (Aurigma error codes) and httpCodes. Values listed there will trigger the auto resume feature. Example of the JSON: {errorCodes: [0, 4], httpCodes: [404]}..

Default value is "{ 'errorCodes' : [4,0] }".

Remarks

By default, it restores the upload only if the connection is lost or if server returns 5xx HTTP errors (like "bad gateway", etc). You can use this property if you want to extend this list, e.g. if your server always returns 404 error for any kind of errors.

See Also

Reference