5 instantiations of FaultContractInfo
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DispatcherBuilder.cs (2)
140
child.FaultContractInfos.Add(new
FaultContractInfo
(fault.Action, fault.DetailType, fault.ElementName, fault.Namespace, operation.KnownTypes));
166
child.FaultContractInfos.Add(new
FaultContractInfo
(fault.Action, fault.DetailType, fault.ElementName, fault.Namespace, operation.KnownTypes));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
376
FaultContractInfo faultContractInfo = new
FaultContractInfo
(fault.Action, fault.DetailType, fault.ElementName, fault.Namespace, this.Operation.KnownTypes);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\FaultFormatter.cs (2)
21
faultContractInfoList.Add(new
FaultContractInfo
(MessageHeaders.WildcardAction, detailTypes[i]));
178
faultContractInfos.Add(new
FaultContractInfo
(FaultCodeConstants.Actions.NetDispatcher, typeof(ExceptionDetail)));
30 references to FaultContractInfo
dotnet-svcutil-lib (30)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (5)
116
private XmlSerializerFaultFormatter CreateFaultFormatter(SynchronizedCollection<
FaultContractInfo
> faultContractInfos)
376
FaultContractInfo
faultContractInfo = new FaultContractInfo(fault.Action, fault.DetailType, fault.ElementName, fault.Namespace, this.Operation.KnownTypes);
703
private
FaultContractInfo
_faultContractInfo;
708
internal XmlSerializerFaultContractInfo(
FaultContractInfo
faultContractInfo, SerializerStub serializerStub,
724
internal
FaultContractInfo
FaultContractInfo
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ClientOperation.cs (3)
32
private SynchronizedCollection<
FaultContractInfo
> _faultContractInfos;
69
_faultContractInfos = parent.NewBehaviorCollection<
FaultContractInfo
>();
78
public SynchronizedCollection<
FaultContractInfo
> FaultContractInfos
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DataContractSerializerFaultFormatter.cs (1)
16
internal DataContractSerializerFaultFormatter(SynchronizedCollection<
FaultContractInfo
> faultContractInfoCollection)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DispatchOperation.cs (3)
12
private readonly SynchronizedCollection<
FaultContractInfo
> _faultContractInfos;
39
_faultContractInfos = parent.NewBehaviorCollection<
FaultContractInfo
>();
61
public SynchronizedCollection<
FaultContractInfo
> FaultContractInfos
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\FaultFormatter.cs (17)
15
private
FaultContractInfo
[] _faultContractInfos;
19
List<
FaultContractInfo
> faultContractInfoList = new List<
FaultContractInfo
>();
26
internal FaultFormatter(SynchronizedCollection<
FaultContractInfo
> faultContractInfoCollection)
28
List<
FaultContractInfo
> faultContractInfoList;
31
faultContractInfoList = new List<
FaultContractInfo
>(faultContractInfoCollection);
71
FaultContractInfo
faultInfo = null;
93
IList<
FaultContractInfo
> faultInfos;
96
faultInfos = new List<
FaultContractInfo
>();
114
FaultContractInfo
faultInfo = faultInfos[i];
166
private static
FaultContractInfo
[] GetSortedArray(List<
FaultContractInfo
> faultContractInfoList)
168
FaultContractInfo
[] temp = faultContractInfoList.ToArray();
169
Array.Sort<
FaultContractInfo
>(temp,
170
delegate (
FaultContractInfo
x,
FaultContractInfo
y)
176
private static void AddInfrastructureFaults(List<
FaultContractInfo
> faultContractInfos)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\XmlSerializerFaultFormatter.cs (1)
29
internal XmlSerializerFaultFormatter(SynchronizedCollection<
FaultContractInfo
> faultContractInfoCollection,