SessionRemoteExceptionCollection.cs 442 B

12345678910111213
  1. using System.Collections;
  2. using System.Runtime.InteropServices;
  3. namespace WinSCP
  4. {
  5. [Guid("2309282F-B89B-4F6B-AEB1-D3E1629B7033")]
  6. [ClassInterface(Constants.CollectionClassInterface)]
  7. [ComVisible(true)]
  8. [ComDefaultInterface(typeof(IEnumerable))] // See the comment at ReadOnlyInteropCollection
  9. public class SessionRemoteExceptionCollection : ReadOnlyInteropCollection<SessionRemoteException>
  10. {
  11. }
  12. }