using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel.Configuration; using System.Text; using System.Threading.Tasks; namespace BeWo.Service.ServiceBehavior.WCFError { public class WCFErrorBehaviorExtension : BehaviorExtensionElement { public override Type BehaviorType => typeof(WCFErrorBehavior); protected override object CreateBehavior() { return new WCFErrorBehavior(); } } }