1 write to DetailType
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (1)
1107
fault.
DetailType
= attr.DetailType;
11 references to DetailType
dotnet-svcutil-lib (11)
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\ServiceContractGenerator.cs (2)
604
CodeTypeReference exceptionTypeReference = fault.
DetailType
!= null ? context.Contract.ServiceContractGenerator.GetCodeTypeReference(fault.
DetailType
) : fault.DetailTypeReference;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (3)
1086
if (XmlName.IsNullOrEmpty(existingFault.ElementName) && XmlName.IsNullOrEmpty(fault.ElementName) && existingFault.
DetailType
== fault.
DetailType
)
1088
string.Format(SRServiceModel.SFxFaultContractDuplicateDetailType, operationName, fault.
DetailType
)));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (4)
376
FaultContractInfo faultContractInfo = new FaultContractInfo(fault.Action, fault.
DetailType
, fault.ElementName, fault.Namespace, this.Operation.KnownTypes);
521
XmlTypeMapping mapping = _parent._importer.ImportTypeMapping(fault.
DetailType
);
525
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(string.Format(SRServiceModel.SFxFaultTypeAnonymous, this.Operation.Name, fault.
DetailType
.FullName)));
530
members[0] = XmlSerializerHelper.GetXmlReflectionMember(null /*memberName*/, faultElementName, faultNamespace, fault.
DetailType
,