Occurs when the progress level changes for an uploading file.

Namespace: ININ.IceLib.Connection
Assembly: ININ.IceLib (in ININ.IceLib.dll) Version: 0.0.0.0 (22.3.0.218)

Syntax

C#
public event EventHandler<TransferProgressChangedEventArgs> UploadProgressChanged
Visual Basic
Public Event UploadProgressChanged As EventHandler(Of TransferProgressChangedEventArgs)

Remarks

This event will only occur if a upload has been started. (See UploadFile(String, String) or UploadFile(String, String, Boolean).)

The UserData property of the TransferProgressChangedEventArgs will contain the local file name specified in order to track multiple concurrent uploads.

Note
All event handlers should be added before the upload is started.

Version Information

Supported for IC Server version 2015 R1 and beyond.
For 4.0, supported for IC Server version 4.0 GA and beyond.
For 3.0, supported for IC Server version 3.0 GA and beyond.

See Also