File: System\ServiceModel\Configuration\BehaviorExtensionElement.cs
Project: ndp\cdf\src\WCF\ServiceModel\System.ServiceModel.csproj (System.ServiceModel)
//-----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------------------------
 
namespace System.ServiceModel.Configuration
{
    using System.Configuration;
    using System.Globalization;
    using System.Xml;
 
    public abstract class BehaviorExtensionElement : ServiceModelExtensionElement
    {
        protected internal abstract object CreateBehavior();
        public abstract Type BehaviorType { get; }
    }
}