FileUploadOptions

A FileUploadOptions object can be passed to the FileTransfer objects upload method in order to specify additional parameters to the upload script.

Properties

  • fileKey: The name of the form element. If not set defaults to "file". (DOMString)
  • fileName: The file name you want the file to be saved as on the server. If not set defaults to "image.jpg". (DOMString)
  • mimeType: The mime type of the data you are uploading. If not set defaults to "image/jpeg". (DOMString)
  • params: A set of optional key/value pairs to be passed along in the HTTP request. (Object)
  • chunkedMode: Should the data be uploaded in chunked streaming mode. If not set defaults to "true". (Boolean)
  • headers: A map of header name => header value. To specify multiple values for a header, use an array of values. (Object)

Description

A FileUploadOptions object can be passed to the FileTransfer objects upload method in order to specify additional parameters to the upload script.

WP7 Quirk

  • chunkedMode: This parameter is ignored on WP7.