//----------------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel { using System; using System.Collections.Generic; using System.Collections.ObjectModel; public interface IExtensionCollection : ICollection> where T : IExtensibleObject { E Find(); Collection FindAll(); } }