FtpPresentWorkingDirectoryEventArgs.cs (341B)
1 using System; 2 3 namespace WinPhoneFtp.FtpService 4 { 5 public class FtpPresentWorkingDirectoryEventArgs : EventArgs 6 { 7 public String PresentWorkingDirectory 8 { 9 get; 10 private set; 11 } 12 13 internal FtpPresentWorkingDirectoryEventArgs(String PresentWorkingDirectory) 14 { 15 this.PresentWorkingDirectory = PresentWorkingDirectory; 16 } 17 } 18 }