3 instantiations of ExceptionDetail
System.ServiceModel.Primitives (3)
System\ServiceModel\Dispatcher\ErrorBehavior.cs (2)
96fault = MessageFault.CreateFault(code, new FaultReason(error.Message), new ExceptionDetail(error)); 148ExceptionDetail detail = new ExceptionDetail(ndfe);
System\ServiceModel\ExceptionDetail.cs (1)
31InnerException = new ExceptionDetail(exception.InnerException);
11 references to ExceptionDetail
Client.ExpectedExceptions.IntegrationTests (2)
ExpectedExceptionTests.4.0.0.cs (2)
193FaultException<ExceptionDetail> exception = Assert.Throws<FaultException<ExceptionDetail>>(() =>
Contract.Fault.IntegrationTests (2)
FaultExceptionTests.4.0.0.cs (2)
58FaultException<ExceptionDetail> exception = Assert.Throws<FaultException<ExceptionDetail>>(() =>
System.ServiceModel (1)
netstandard.cs (1)
155[assembly: TypeForwardedTo(typeof(ExceptionDetail))]
System.ServiceModel.Primitives (6)
System\ServiceModel\Channels\ServiceChannel.cs (3)
1081ExceptionDetail detail = fault.GetDetail<ExceptionDetail>(); 1082throw DiagnosticUtility.ExceptionUtility.ThrowHelperWarning(new FaultException<ExceptionDetail>(detail, fault.Reason, fault.Code, action));
System\ServiceModel\Dispatcher\ErrorBehavior.cs (1)
148ExceptionDetail detail = new ExceptionDetail(ndfe);
System\ServiceModel\Dispatcher\FaultFormatter.cs (1)
195faultContractInfos.Add(new FaultContractInfo(FaultCodeConstants.Actions.NetDispatcher, typeof(ExceptionDetail)));
System\ServiceModel\ExceptionDetail.cs (1)
39public ExceptionDetail InnerException { get; set; }