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