Files
BeWoPlaner/Service/ServiceBehavior/WCFError/WCFErrorBehaviorExtension.cs
2025-03-19 09:35:01 +01:00

20 lines
439 B
C#

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();
}
}
}