IExtensibleObject.cs 455 B

123456789101112131415
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. namespace System.ServiceModel
  5. {
  6. using System;
  7. using System.Collections.Generic;
  8. public interface IExtensibleObject<T>
  9. where T : IExtensibleObject<T>
  10. {
  11. IExtensionCollection<T> Extensions { get; }
  12. }
  13. }