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