using System;
namespace Renci.SshNet.Common
{
    /// 
    /// Provides data for the Uploading event.
    /// 
    public class ScpUploadEventArgs : EventArgs
    {
        /// 
        /// Gets the uploaded filename.
        /// 
        public string Filename { get; private set; }
        /// 
        /// Gets the uploaded file size.
        /// 
        public long Size { get; private set; }
        /// 
        /// Gets number of uploaded bytes so far.
        /// 
        public long Uploaded { get; private set; }
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// The uploaded filename.
        /// The the uploaded file size.
        /// The number of uploaded bytes so far.
        public ScpUploadEventArgs(string filename, long size, long uploaded)
        {
            this.Filename = filename;
            this.Size = size;
            this.Uploaded = uploaded;
        }
    }
}