ScopeElementCollection.cs 501 B

123456789101112131415161718192021
  1. using System;
  2. using System.ComponentModel;
  3. using System.Configuration;
  4. using System.ServiceModel.Configuration;
  5. namespace System.ServiceModel.Discovery.Configuration
  6. {
  7. [ConfigurationCollection (typeof (ScopeElement))]
  8. public sealed class ScopeElementCollection : ServiceModelConfigurationElementCollection<ScopeElement>
  9. {
  10. public ScopeElementCollection ()
  11. {
  12. }
  13. protected override object GetElementKey (ConfigurationElement element)
  14. {
  15. return ((ScopeElement) element).Scope;
  16. }
  17. }
  18. }