OperationEventArgs.cs 401 B

1234567891011121314151617
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace WinSCP
  4. {
  5. [Guid("4D79C4F7-0FE2-428D-9908-AB2D38E96C53")]
  6. [ClassInterface(Constants.ClassInterface)]
  7. [ComVisible(true)]
  8. public class OperationEventArgs : EventArgs
  9. {
  10. public SessionRemoteException Error { get; internal set; }
  11. internal OperationEventArgs()
  12. {
  13. }
  14. }
  15. }