System\ServiceModel\Dispatcher\FaultFormatter.cs (8)
41public MessageFault Serialize(FaultException faultException, out string action)
48for (Type faultType = faultException.GetType(); faultType != typeof(FaultException); faultType = faultType.BaseType)
64public FaultException Deserialize(MessageFault messageFault, string action)
95protected virtual FaultException CreateFaultException(MessageFault messageFault, string action)
127FaultException faultException = CreateFaultException(messageFault, action,
140protected FaultException CreateFaultException(MessageFault messageFault, string action,
161return (FaultException)Activator.CreateInstance(knownFaultType,
185static MessageFault CreateMessageFault(XmlObjectSerializer serializer, FaultException faultException, Type detailType)