file360

Log | Files | Refs

FtpFileOperationInfo.cs (504B)


      1 using System;
      2 using System.IO;
      3 
      4 namespace WinPhoneFtp.FtpService
      5 {
      6 	internal class FtpFileOperationInfo
      7 	{
      8 		internal FtpFileOperationInfo(Stream LocalFileStream, String RemoteFile, Boolean IsUpload)
      9 		{
     10 			this.LocalFileStream = LocalFileStream;
     11 			this.RemoteFile = RemoteFile;
     12 			this.IsUpload = IsUpload;
     13 		}
     14 
     15 		public Stream LocalFileStream
     16 		{
     17 			get;
     18 			private set;
     19 		}
     20 
     21 		public String RemoteFile
     22 		{
     23 			get;
     24 			private set;
     25 		}
     26 
     27 		public Boolean IsUpload
     28 		{
     29 			get;
     30 			private set;
     31 		}
     32 	}
     33 }