GetFilesize Event fires not

The GetFileSize Event fires not after the GetFileSize Command.
Any idea what's going on and how to fix this?

// read Remote Filesize

try

{

	_ftp.GetFileSize(RemoteFilename);

}

catch (Exception e)

{

	ShowError(e.Message);

	return;

}
// The event is fired after the GetFileSize method completed.

private void OnGetFileSizeEvent(string Name)

{

	BeginInvoke(m_Form.m_DelegateFilesizeSession);

}



_ftp.OnGetFileSize += new sfFTPLib.IFTPConnectionEvents_OnGetFileSizeEventHandler(OnGetFileSizeEvent)
Regards,
Raimund


You are right. The wrong event was fired. Fixed in the latest version:

Thanky you! Now works.

Regards,
Raimund