IExtensionCollection.cs 534 B

1234567891011121314151617
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. namespace System.ServiceModel
  5. {
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Collections.ObjectModel;
  9. public interface IExtensionCollection<T> : ICollection<IExtension<T>>
  10. where T : IExtensibleObject<T>
  11. {
  12. E Find<E>();
  13. Collection<E> FindAll<E>();
  14. }
  15. }