2 types derived from FaultException
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\NetDispatcherFaultException.cs (1)
7internal class NetDispatcherFaultException : FaultException
FrameworkFork\System.ServiceModel\System\ServiceModel\FaultException.cs (1)
326public class FaultException<TDetail> : FaultException
6 instantiations of FaultException
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
1069throw DiagnosticUtility.ExceptionUtility.ThrowHelperWarning(new FaultException(fault, action));
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
867FaultException exception = new FaultException(reason, code);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
380FaultException exception = new FaultException(reason, code);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\FaultFormatter.cs (2)
63return new FaultException(messageFault, action); 133return new FaultException(messageFault, action);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\XmlSerializerFaultFormatter.cs (1)
113return new FaultException(messageFault, action);
55 references to FaultException
dotnet-svcutil-lib (55)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
949FaultException fe = rpc.Operation.FaultFormatter.Deserialize(fault, action);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
867FaultException exception = new FaultException(reason, code);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
380FaultException exception = new FaultException(reason, code);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorBehavior.cs (4)
29FaultException fault = error as FaultException; 103FaultException e = error as FaultException;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\FaultFormatter.cs (8)
37public MessageFault Serialize(FaultException faultException, out string action) 44for (Type faultType = faultException.GetType(); faultType != typeof(FaultException); faultType = faultType.BaseType()) 60public FaultException Deserialize(MessageFault messageFault, string action) 91protected virtual FaultException CreateFaultException(MessageFault messageFault, string action) 123FaultException faultException = CreateFaultException(messageFault, action, 136protected FaultException CreateFaultException(MessageFault messageFault, string action, 157return (FaultException)Activator.CreateInstance(knownFaultType, 181private static MessageFault CreateMessageFault(XmlObjectSerializer serializer, FaultException faultException, Type detailType)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\IClientFaultFormatter.cs (1)
11FaultException Deserialize(MessageFault messageFault, string action);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\IDispatchFaultFormatter.cs (1)
11MessageFault Serialize(FaultException faultException, out string action);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\SyncMethodInvoker.cs (1)
149catch (System.ServiceModel.FaultException)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\TaskMethodInvoker.cs (2)
103throw FxTrace.Exception.AsError<FaultException>(ae); 224catch (FaultException)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\XmlSerializerFaultFormatter.cs (2)
69protected override FaultException CreateFaultException(MessageFault messageFault, string action) 103FaultException faultException = CreateFaultException(messageFault, action,
FrameworkFork\System.ServiceModel\System\ServiceModel\FaultException.cs (33)
13[KnownType(typeof(FaultException.FaultCodeData))] 14[KnownType(typeof(FaultException.FaultCodeData[]))] 15[KnownType(typeof(FaultException.FaultReasonData))] 16[KnownType(typeof(FaultException.FaultReasonData[]))] 29_code = FaultException.DefaultCode; 30_reason = FaultException.DefaultReason; 36_code = FaultException.DefaultCode; 37_reason = FaultException.CreateReason(reason); 41: base(FaultException.GetSafeReasonText(reason)) 43_code = FaultException.DefaultCode; 44_reason = FaultException.EnsureReason(reason); 50_code = FaultException.EnsureCode(code); 51_reason = FaultException.CreateReason(reason); 55: base(FaultException.GetSafeReasonText(reason)) 57_code = FaultException.EnsureCode(code); 58_reason = FaultException.EnsureReason(reason); 64_code = FaultException.EnsureCode(code); 65_reason = FaultException.CreateReason(reason); 72_code = FaultException.EnsureCode(code); 73_reason = FaultException.CreateReason(reason); 78: base(FaultException.GetSafeReasonText(reason)) 80_code = FaultException.EnsureCode(code); 81_reason = FaultException.EnsureReason(reason); 86: base(FaultException.GetSafeReasonText(reason), innerException) 88_code = FaultException.EnsureCode(code); 89_reason = FaultException.EnsureReason(reason); 94: base(FaultException.GetSafeReasonText(GetReason(fault))) 99_code = FaultException.EnsureCode(fault.Code); 100_reason = FaultException.EnsureReason(fault.Reason); 105: base(FaultException.GetSafeReasonText(GetReason(fault))) 138get { return FaultException.GetSafeReasonText(this.Reason); } 156public static FaultException CreateFault(MessageFault messageFault, params Type[] faultDetailTypes) 161public static FaultException CreateFault(MessageFault messageFault, string action, params Type[] faultDetailTypes)