1 write to ElementName
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (1)
592
faultDescription.
ElementName
= new XmlName(detailElementQname.Name, true /*isEncoded*/);
13 references to ElementName
dotnet-svcutil-lib (13)
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)
619
if (!XmlName.IsNullOrEmpty(fault.
ElementName
))
620
faultContractAttr.Arguments.Add(new CodeAttributeArgument("Name", new CodePrimitiveExpression(fault.
ElementName
.EncodedName)));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (7)
1086
if (XmlName.IsNullOrEmpty(existingFault.
ElementName
) && XmlName.IsNullOrEmpty(fault.
ElementName
) && existingFault.DetailType == fault.DetailType)
1089
if (!XmlName.IsNullOrEmpty(existingFault.
ElementName
) && !XmlName.IsNullOrEmpty(fault.
ElementName
) && existingFault.
ElementName
== fault.
ElementName
&& existingFault.Namespace == fault.Namespace)
1091
string.Format(SRServiceModel.SFxFaultContractDuplicateElement, operationName, fault.
ElementName
, fault.Namespace)));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (2)
376
FaultContractInfo faultContractInfo = new FaultContractInfo(fault.Action, fault.DetailType, fault.
ElementName
, fault.Namespace, this.Operation.KnownTypes);
517
XmlName faultElementName = fault.
ElementName
;