SendFileProgressDelegate Delegate
Represents the method that will handle send file progress
[Visual Basic]
Public Delegate Sub SendFileProgressDelegate( _
ByVal
Sender As
Object, _
ByVal
SentBytes As
Integer, _
ByVal
TotalBytes As
Integer _
)
[C#]
public delegate void SendFileProgressDelegate(
object Sender,
int SentBytes,
int TotalBytes);
Parameters
-
Sender
- Object instance that fires the event.
-
SentBytes
- Total sent bytes.
-
TotalBytes
- Total bytes to send.
Requirements
Namespace:
BlueLibs.Components
Assembly: BlueLibs (in BlueLibs.dll)
See Also
BlueLibs.Components Namespace