5 instantiations of FaultContractInfo
System.ServiceModel (5)
System\ServiceModel\Description\DispatcherBuilder.cs (2)
995child.FaultContractInfos.Add(new FaultContractInfo(fault.Action, fault.DetailType, fault.ElementName, fault.Namespace, operation.KnownTypes)); 1022child.FaultContractInfos.Add(new FaultContractInfo(fault.Action, fault.DetailType, fault.ElementName, fault.Namespace, operation.KnownTypes));
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
415FaultContractInfo faultContractInfo = new FaultContractInfo(fault.Action, fault.DetailType, fault.ElementName, fault.Namespace, this.Operation.KnownTypes);
System\ServiceModel\Dispatcher\FaultFormatter.cs (2)
25faultContractInfoList.Add(new FaultContractInfo(MessageHeaders.WildcardAction, detailTypes[i])); 182faultContractInfos.Add(new FaultContractInfo(FaultCodeConstants.Actions.NetDispatcher, typeof(ExceptionDetail)));
30 references to FaultContractInfo
System.ServiceModel (30)
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (5)
117XmlSerializerFaultFormatter CreateFaultFormatter(SynchronizedCollection<FaultContractInfo> faultContractInfos) 415FaultContractInfo faultContractInfo = new FaultContractInfo(fault.Action, fault.DetailType, fault.ElementName, fault.Namespace, this.Operation.KnownTypes); 823FaultContractInfo faultContractInfo; 828internal XmlSerializerFaultContractInfo(FaultContractInfo faultContractInfo, SerializerStub serializerStub, 844internal FaultContractInfo FaultContractInfo
System\ServiceModel\Dispatcher\ClientOperation.cs (3)
34SynchronizedCollection<FaultContractInfo> faultContractInfos; 72this.faultContractInfos = parent.NewBehaviorCollection<FaultContractInfo>(); 81public SynchronizedCollection<FaultContractInfo> FaultContractInfos
System\ServiceModel\Dispatcher\DataContractSerializerFaultFormatter.cs (1)
23internal DataContractSerializerFaultFormatter(SynchronizedCollection<FaultContractInfo> faultContractInfoCollection)
System\ServiceModel\Dispatcher\DispatchOperation.cs (3)
14SynchronizedCollection<FaultContractInfo> faultContractInfos; 51this.faultContractInfos = parent.NewBehaviorCollection<FaultContractInfo>(); 78public SynchronizedCollection<FaultContractInfo> FaultContractInfos
System\ServiceModel\Dispatcher\FaultFormatter.cs (17)
19FaultContractInfo[] faultContractInfos; 23List<FaultContractInfo> faultContractInfoList = new List<FaultContractInfo>(); 30internal FaultFormatter(SynchronizedCollection<FaultContractInfo> faultContractInfoCollection) 32List<FaultContractInfo> faultContractInfoList; 35faultContractInfoList = new List<FaultContractInfo>(faultContractInfoCollection); 75FaultContractInfo faultInfo = null; 97IList<FaultContractInfo> faultInfos; 100faultInfos = new List<FaultContractInfo>(); 118FaultContractInfo faultInfo = faultInfos[i]; 170static FaultContractInfo[] GetSortedArray(List<FaultContractInfo> faultContractInfoList) 172FaultContractInfo[] temp = faultContractInfoList.ToArray(); 173Array.Sort<FaultContractInfo>(temp, 174delegate(FaultContractInfo x, FaultContractInfo y) 180static void AddInfrastructureFaults(List<FaultContractInfo> faultContractInfos)
System\ServiceModel\Dispatcher\XmlSerializerFaultFormatter.cs (1)
29internal XmlSerializerFaultFormatter(SynchronizedCollection<FaultContractInfo> faultContractInfoCollection,