我知道我可以通过一些XML配置添加服务行为,但我想用一块C#来做,类似于如何添加端点行为。不过,我不知道该怎么做。
换句话说,如何添加我在下面实例化的调试行为?
var host = new ServiceHost(typeof(MyService));
var endpoint = host.AddServiceEndpoint(typeof (MysService),
new WebHttpBinding(), new Uri(myURL));
endpoint.Behaviors.Add(new WebHttpBehavior());
var debug = new ServiceDebugBehavior
{
IncludeExceptionDetailInFaults = true
};
//WHAT DO I PUT HERE?
host.Open();
答案 0 :(得分:33)
host.Description.Behaviors.Add(debug);
答案 1 :(得分:2)
你也可以为你的服务写一个例子。
[ServiceBehavior(IncludeExceptionDetailInFaults = true)]
public class Service1 : IServiceChild