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