// Telenor Inpli TFTP Server Module // // Copyright 2018 Telenor Inpli AS Norway namespace libtftp { /// /// Event arguments for failed transfers /// public class TftpTransferErrorEventArgs : TftpTransferCompleteEventArgs { /// /// Description of the transfer failure. /// public string FailureReason { get; set; } } }