1 type derived from FaultException
System.ServiceModel.Web (1)
System\ServiceModel\Web\WebFaultException.cs (1)
145public class WebFaultException<T> : FaultException<T>, IWebFaultException
2 instantiations of FaultException
System.ServiceModel (1)
System\ServiceModel\Channels\ServiceChannel.cs (1)
1150throw DiagnosticUtility.ExceptionUtility.ThrowHelperWarning(new FaultException<ExceptionDetail>(detail, fault.Reason, fault.Code, action));
System.ServiceModel.Web (1)
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (1)
344new FaultException<ExceptionDetail>(faultDetail.ExceptionDetail, faultDetail.Message, faultCode));
6 references to FaultException
System.ServiceModel (3)
System\ServiceModel\Dispatcher\FaultFormatter.cs (3)
50if (faultType.IsGenericType && (faultType.GetGenericTypeDefinition() == typeof(FaultException<>))) 160Type knownFaultType = typeof(FaultException<>).MakeGenericType(detailType); 201public OperationFault(XmlObjectSerializer serializer, FaultException<T> faultException) :
System.ServiceModel.Activities (3)
System\ServiceModel\Activities\ContractInferenceHelper.cs (1)
70faultExceptionType = typeof(FaultException<>);
System\ServiceModel\Activities\MessagingActivityHelper.cs (1)
24static Type faultExceptionGenericType = typeof(FaultException<>);
System\ServiceModel\Activities\SendReply.cs (1)
422Type faultType = typeof(FaultException<>).MakeGenericType(substitute);