ResumeInfo Property

 Object: XFRequest
 Syntax: XFRequest.ResumeInfo
 Type: ResumeInfo object
 Read/Write: Read only
 Description: In a resumable file transfer request, ResumeInfo gets the request's ResumeInfo object, which is used to set properties related to resuming a failed file transfer.
 Example:
        
... 
'--- Set a ResumeInfo object to access properties related to 
'--- resuming a failed file transfer. 
Set XFileResumeInfo = SAXFile.ResumeInfo 

'--- Set Resumable to True to allow the upload to be resumed. 
XFileResumeInfo.Resumable = True 

'--- If CacheRequest is set to True XFile will save copies of the 
'--- files to upload before sending the upload request. In a resumable 
'--- upload, enabling CacheRequest guarantees the integrity of 
'--- a resumed request. 
XFileResumeInfo.CacheRequest = True 

'--- StatusUrl specifies the URL of the FileUpEE status script 
'--- to which XFile will send the upload status request, when 
'--- resuming an upload. 
XFileResumeInfo.StatusUrl = "http://localhost/XFileResumeUpload/status.asp" 
... 
      

Copyright © 2010 SoftArtisans, Inc. All rights reserved.