www.pudn.com > TFTPUtil_Class_Version_1.3.0.zip > TFTPServerTransferEventArgs.cs


using System; 
using System.Collections.Generic; 
using System.Text; 
 
namespace TFTPUtil 
{ 
    ///  
    ///  
    ///  
    ///  
    ///  
    public delegate void TFTPServerTransferEventHandler(object sender, TFTPServerTransferEventArgs e); 
 
    ///  
    ///  
    ///  
    public class TFTPServerTransferEventArgs : EventArgs 
    { 
        private TFTPServerProcess Process; 
 
        ///  
        ///  
        ///  
        ///  
        public TFTPServerTransferEventArgs(TFTPServerProcess Process) 
        { 
            this.Process = Process; 
        } 
 
        ///  
        ///  
        ///  
        public TFTPServerProcess NewProcess 
        { 
            get 
            { 
                return Process; 
            } 
        } 
    } 
}