license: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing,
     software distributed under the License is distributed on an
     "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.

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.