UploadComplete Event
Fires after an upload completes.
Syntax
[VB.NET] Public Event OnUploadComplete As OnUploadCompleteHandler
[C#] public event OnUploadCompleteHandler OnUploadComplete; public delegate void OnUploadCompleteHandler(object sender, DropboxUploadCompleteEventArgs e); class DropboxUploadCompleteEventArgs : EventArgs { string Name {get;} string Id {get;} string Path {get;} string ModifiedDate {get;} string Revision {get;} long Size {get;} }
Remarks
This event fires after an upload is complete.
Name is the name of the resource.
Id is the Id of the resource.
Path is the absolute path to the resource.
ModifiedDate is the modified date of the resource.
Revision is the revision of the file.
Size is the size of the file in bytes.