如何在不使用App.Config的情况下在代码中设置IncludeExceptionDetailInFaults?
答案 0 :(得分:103)
是的,确定 - 在服务器端,在打开服务主机之前。但是,这将要求您自行托管WCF服务 - 在IIS托管方案中不起作用:
ServiceHost host = new ServiceHost(typeof(MyWCFService));
ServiceDebugBehavior debug = host.Description.Behaviors.Find<ServiceDebugBehavior>();
// if not found - add behavior with setting turned on
if (debug == null)
{
host.Description.Behaviors.Add(
new ServiceDebugBehavior() { IncludeExceptionDetailInFaults = true });
}
else
{
// make sure setting is turned ON
if (!debug.IncludeExceptionDetailInFaults)
{
debug.IncludeExceptionDetailInFaults = true;
}
}
host.Open();
如果你需要在IIS托管中做同样的事情,你将不得不创建自己的自定义MyServiceHost
后代和一个合适的MyServiceHostFactory
来实例化这样的自定义服务主机,并引用这个* .svc文件中的自定义服务主机工厂。
答案 1 :(得分:29)
您也可以在继承接口的类声明上方的[ServiceBehavior]标记中设置它
[ServiceBehavior(IncludeExceptionDetailInFaults = true)]
public class MyClass:IMyService
{
...
}