7 writes to IncludeExceptionDetailInFaults
System.ServiceModel (6)
System\ServiceModel\CallbackBehaviorAttribute.cs (1)
186dispatchRuntime.ChannelDispatcher.IncludeExceptionDetailInFaults = this.includeExceptionDetailInFaults;
System\ServiceModel\Description\CallbackDebugBehavior.cs (1)
44channelDispatcher.IncludeExceptionDetailInFaults = true;
System\ServiceModel\Description\ServiceDebugBehavior.cs (1)
168channelDispatcher.IncludeExceptionDetailInFaults = true;
System\ServiceModel\Description\ServiceMetadataExtension.cs (2)
455channelDispatcher.IncludeExceptionDetailInFaults |= sdb.IncludeExceptionDetailInFaults; 459channelDispatcher.IncludeExceptionDetailInFaults |= sba.IncludeExceptionDetailInFaults;
System\ServiceModel\ServiceBehaviorAttribute.cs (1)
367channelDispatcher.IncludeExceptionDetailInFaults = this.includeExceptionDetailInFaults;
System.WorkflowServices (1)
System\ServiceModel\Description\WorkflowServiceBehavior.cs (1)
280channelDispatcher.IncludeExceptionDetailInFaults = includeExceptionDetailsInFaults;
3 references to IncludeExceptionDetailInFaults
System.ServiceModel (1)
System\ServiceModel\Dispatcher\ErrorBehavior.cs (1)
24this.debug = channelDispatcher.IncludeExceptionDetailInFaults;
System.ServiceModel.Web (2)
System\ServiceModel\Description\WebHttpBehavior.cs (1)
543WebErrorHandler errorHandler = new WebErrorHandler(this, endpoint.Contract, endpointDispatcher.DispatchRuntime.ChannelDispatcher.IncludeExceptionDetailInFaults);
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (1)
236endpointDispatcher.ChannelDispatcher.ErrorHandlers.Add(new JsonErrorHandler(endpoint, endpointDispatcher.ChannelDispatcher.IncludeExceptionDetailInFaults));