public DownloadAction(FileSupport fileSupport, Client.ShareFileClient client, int downloadId, Models.File child, FileSystemInfo target, ActionType type)
 {
     this.child               = child;
     this.client              = client;
     this.downloadId          = downloadId;
     this.target              = target;
     this.actionType          = type;
     this.fileSupportDelegate = fileSupport;
 }
Esempio n. 2
0
 public UploadAction(FileSupport fileSupport, Client.ShareFileClient client, FileSystemInfo source, Models.Item target, String details, ActionType type)
 {
     this.client              = client;
     this.child               = source;
     this.uploadTarget        = target;
     this.details             = details;
     this.fileSupportDelegate = fileSupport;
     actionType               = type;
 }
 public DownloadAction(FileSupport fileSupport, Client.ShareFileClient client, int downloadId, Models.File child, FileSystemInfo target, ActionType type)
 {
     this.child = child;
     this.client = client;
     this.downloadId = downloadId;
     this.target = target;
     this.actionType = type;
     this.fileSupportDelegate = fileSupport;
 }