22 lines
522 B
C#
22 lines
522 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.ServiceModel.Configuration;
|
|
using System.Text;
|
|
|
|
namespace Taloyhtio.GeneralApi.IntegrationUtility.Infrastructure
|
|
{
|
|
public class PoxClientBehaviorExtensionElement : BehaviorExtensionElement
|
|
{
|
|
protected override object CreateBehavior()
|
|
{
|
|
return new PoxClientBehavior();
|
|
}
|
|
|
|
public override Type BehaviorType
|
|
{
|
|
get { return typeof(PoxClientBehavior); }
|
|
}
|
|
}
|
|
}
|