RemovalEventArgsCollection.cs 430 B

12345678910111213
  1. using System.Collections;
  2. using System.Runtime.InteropServices;
  3. namespace WinSCP
  4. {
  5. [Guid("574FF430-FD40-41F9-9A04-971D3CF844B7")]
  6. [ClassInterface(Constants.CollectionClassInterface)]
  7. [ComVisible(true)]
  8. [ComDefaultInterface(typeof(IEnumerable))] // See the comment at ReadOnlyInteropCollection
  9. public class RemovalEventArgsCollection : ReadOnlyInteropCollection<RemovalEventArgs>
  10. {
  11. }
  12. }