3 instantiations of ExceptionDetail
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorBehavior.cs (2)
90
fault = MessageFault.CreateFault(code, new FaultReason(error.Message), new
ExceptionDetail
(error));
142
ExceptionDetail detail = new
ExceptionDetail
(ndfe);
FrameworkFork\System.ServiceModel\System\ServiceModel\ExceptionDetail.cs (1)
34
_innerException = new
ExceptionDetail
(exception.InnerException);
7 references to ExceptionDetail
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (3)
1066
ExceptionDetail
detail = fault.GetDetail<
ExceptionDetail
>();
1067
throw DiagnosticUtility.ExceptionUtility.ThrowHelperWarning(new FaultException<
ExceptionDetail
>(detail, fault.Reason, fault.Code, action));
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorBehavior.cs (1)
142
ExceptionDetail
detail = new ExceptionDetail(ndfe);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\FaultFormatter.cs (1)
178
faultContractInfos.Add(new FaultContractInfo(FaultCodeConstants.Actions.NetDispatcher, typeof(
ExceptionDetail
)));
FrameworkFork\System.ServiceModel\System\ServiceModel\ExceptionDetail.cs (2)
15
private
ExceptionDetail
_innerException;
46
public
ExceptionDetail
InnerException