Files
BeWoPlaner/Service/ServiceBehavior/AdminHibernateBehavior.cs
2025-11-28 14:54:24 +01:00

35 lines
905 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Channels;
using System.ServiceModel.Description;
using System.ServiceModel.Dispatcher;
using System.Text;
using System.Threading.Tasks;
namespace BeWo.Service.ServiceBehavior
{
public class AdminHibernateBehavior : IEndpointBehavior
{
public void AddBindingParameters(ServiceEndpoint endpoint, BindingParameterCollection bindingParameters)
{
}
public void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
{
}
public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher)
{
foreach (DispatchOperation iOperation in endpointDispatcher.DispatchRuntime.Operations)
{
iOperation.CallContextInitializers.Add(new AdminHibernateContextInitializer());
}
}
public void Validate(ServiceEndpoint endpoint)
{
}
}
}