TransferEventArgsCollection.cs 432 B

12345678910111213
  1. using System.Collections;
  2. using System.Runtime.InteropServices;
  3. namespace WinSCP
  4. {
  5. [Guid("0285917B-581A-4F6F-9A9D-1C34ABFB4E38")]
  6. [ClassInterface(Constants.CollectionClassInterface)]
  7. [ComVisible(true)]
  8. [ComDefaultInterface(typeof(IEnumerable))] // See the comment at ReadOnlyInteropCollection
  9. public class TransferEventArgsCollection : ReadOnlyInteropCollection<TransferEventArgs>
  10. {
  11. }
  12. }