GSF.Net.Ftp.FtpClient.OnEndFileTransfer C# (CSharp) Method

OnEndFileTransfer() private method

private OnEndFileTransfer ( string localFileName, string remoteFileName, TransferDirection transferDirection ) : void
localFileName string
remoteFileName string
transferDirection TransferDirection
return void
        internal void OnEndFileTransfer(string localFileName, string remoteFileName, TransferDirection transferDirection)
        {
            if ((object)EndFileTransfer != null)
                EndFileTransfer(this, new EventArgs<string, string, TransferDirection>(localFileName, remoteFileName, transferDirection));
        }