BehaviorExtensionElement.cs 564 B

12345678910111213141516
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. namespace System.ServiceModel.Configuration
  5. {
  6. using System.Configuration;
  7. using System.Globalization;
  8. using System.Xml;
  9. public abstract class BehaviorExtensionElement : ServiceModelExtensionElement
  10. {
  11. protected internal abstract object CreateBehavior();
  12. public abstract Type BehaviorType { get; }
  13. }
  14. }