RemoteFileInfoCollection.cs 426 B

12345678910111213
  1. using System.Collections;
  2. using System.Runtime.InteropServices;
  3. namespace WinSCP
  4. {
  5. [Guid("39AA3D00-578C-49AF-B3E4-16CE26C710C6")]
  6. [ClassInterface(Constants.CollectionClassInterface)]
  7. [ComVisible(true)]
  8. [ComDefaultInterface(typeof(IEnumerable))] // See the comment at ReadOnlyInteropCollection
  9. public class RemoteFileInfoCollection : ReadOnlyInteropCollection<RemoteFileInfo>
  10. {
  11. }
  12. }