Files
BeWoPlaner/Service/ServiceBehavior/JsonError/JsonErrorBehaviorExtension.cs

20 lines
443 B
C#
Raw Normal View History

2025-02-21 11:56:28 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Configuration;
using System.Text;
using System.Threading.Tasks;
namespace BeWo.Service.ServiceBehavior.JsonError
{
public class JsonErrorBehaviorExtension : BehaviorExtensionElement
{
public override Type BehaviorType => typeof(JsonErrorBehavior);
protected override object CreateBehavior()
{
return new JsonErrorBehavior();
}
}
}