file360

Log | Files | Refs

FtpFileTransferProgressedEventArgs.cs (534B)


      1 using System;
      2 
      3 namespace WinPhoneFtp.FtpService
      4 {
      5     public class FtpFileTransferProgressedEventArgs : EventArgs
      6     {
      7         public UInt32 BytesTransferred
      8         {
      9             get;
     10             private set;
     11         }
     12 
     13         public Boolean IsUpload
     14         {
     15             get;
     16             private set;
     17         }
     18 
     19         internal FtpFileTransferProgressedEventArgs(UInt32 BytesTransferred, Boolean IsUpload)
     20         {
     21             this.BytesTransferred = BytesTransferred;
     22             this.IsUpload = IsUpload;
     23         }
     24     }
     25 }