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