6 instantiations of ExceptionDetail
System.ServiceModel (3)
System\ServiceModel\Dispatcher\ErrorBehavior.cs (2)
85fault = MessageFault.CreateFault(code, new FaultReason(error.Message), new ExceptionDetail(error)); 153ExceptionDetail detail = new ExceptionDetail(ndfe);
System\ServiceModel\ExceptionDetail.cs (1)
35this.innerException = new ExceptionDetail(exception.InnerException);
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\ToReply.cs (1)
213new ExceptionDetail(exception));
System.ServiceModel.Web (1)
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (1)
395innerFault = MessageFault.CreateFault(code, new FaultReason(error.Message, CultureInfo.CurrentCulture), new ExceptionDetail(error));
System.WorkflowServices (1)
System\ServiceModel\Dispatcher\DurableErrorHandler.cs (1)
49messageFault = MessageFault.CreateFault(code, new FaultReason(toTrace.Message), new ExceptionDetail(toTrace));
17 references to ExceptionDetail
System.ServiceModel (12)
System\ServiceModel\Channels\ServiceChannel.cs (3)
1149ExceptionDetail detail = fault.GetDetail<ExceptionDetail>(); 1150throw DiagnosticUtility.ExceptionUtility.ThrowHelperWarning(new FaultException<ExceptionDetail>(detail, fault.Reason, fault.Code, action));
System\ServiceModel\Description\ServiceMetadataExtension.cs (5)
1043ExceptionDetail exceptionDetail = null; 1048exceptionDetail = fault.GetDetail<ExceptionDetail>(); 1351ExceptionDetail exceptionDetail; 1364public MetadataOnHelpPageMessage(string errorMessage, ExceptionDetail exceptionDetail) 1531internal void WriteExceptionDetail(ExceptionDetail exceptionDetail)
System\ServiceModel\Dispatcher\ErrorBehavior.cs (1)
153ExceptionDetail detail = new ExceptionDetail(ndfe);
System\ServiceModel\Dispatcher\FaultFormatter.cs (1)
182faultContractInfos.Add(new FaultContractInfo(FaultCodeConstants.Actions.NetDispatcher, typeof(ExceptionDetail)));
System\ServiceModel\ExceptionDetail.cs (2)
16ExceptionDetail innerException; 47public ExceptionDetail InnerException
System.ServiceModel.Web (5)
System\ServiceModel\Description\JsonFaultDetail.cs (2)
13ExceptionDetail exceptionDetail; 20public ExceptionDetail ExceptionDetail
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (3)
344new FaultException<ExceptionDetail>(faultDetail.ExceptionDetail, faultDetail.Message, faultCode)); 457ExceptionDetail originalFaultDetail = fault.GetDetail<ExceptionDetail>();