1 write to ElementName
System.ServiceModel.Primitives (1)
System\ServiceModel\Description\FaultDescription.cs (1)
69ElementName = _name = name;
11 references to ElementName
System.ServiceModel.Primitives (11)
System\ServiceModel\Description\DispatcherBuilder.cs (2)
138child.FaultContractInfos.Add(new FaultContractInfo(fault.Action, fault.DetailType, fault.ElementName, fault.Namespace, operation.KnownTypes)); 165child.FaultContractInfos.Add(new FaultContractInfo(fault.Action, fault.DetailType, fault.ElementName, fault.Namespace, operation.KnownTypes));
System\ServiceModel\Description\TypeLoader.cs (7)
1103if (XmlName.IsNullOrEmpty(existingFault.ElementName) && XmlName.IsNullOrEmpty(fault.ElementName) && existingFault.DetailType == fault.DetailType) 1109if (!XmlName.IsNullOrEmpty(existingFault.ElementName) && !XmlName.IsNullOrEmpty(fault.ElementName) && existingFault.ElementName == fault.ElementName && existingFault.Namespace == fault.Namespace) 1112SRP.Format(SRP.SFxFaultContractDuplicateElement, operationName, fault.ElementName, fault.Namespace)));
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (2)
424FaultContractInfo faultContractInfo = new FaultContractInfo(fault.Action, fault.DetailType, fault.ElementName, fault.Namespace, Operation.KnownTypes); 683XmlName faultElementName = fault.ElementName;