Represents the method that will handle receive file progress.
[Visual Basic] Public Delegate Sub ReceiveFileProgressDelegate( _ ByVal Sender As Object, _ ByVal RecvBytes As Integer, _ ByVal TotalBytes As Integer _ )
[C#]
public delegate void ReceiveFileProgressDelegate( objectSender, intRecvBytes, intTotalBytes );