19 references to ElementName
System.ServiceModel (4)
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
618faultElementName = new XmlName(mapping.ElementName, this.IsEncoded);
System\ServiceModel\Dispatcher\XmlSerializerObjectSerializer.cs (1)
67this.rootName = mapping.ElementName;
System\ServiceModel\Syndication\SyndicationElementExtension.cs (2)
301if (typeMapping != null && !string.IsNullOrEmpty(typeMapping.ElementName)) 303name = typeMapping.ElementName;
System.ServiceModel.Activities (2)
System\ServiceModel\Activities\ContractValidationHelper.cs (1)
318partName = xmlTypeMapping.ElementName;
System\ServiceModel\Activities\MessageBuilder.cs (1)
166partName = xmlTypeMapping.ElementName;
System.ServiceModel.Web (1)
System\ServiceModel\Dispatcher\HelpPage.cs (1)
365name = new XmlQualifiedName(typeMapping.ElementName, typeMapping.Namespace);
System.Web.Services (7)
System\Web\Services\Description\SoapProtocolImporter.cs (7)
590string fieldName = CodeIdentifier.MakeValid(mapping.ElementName); 751if (wrapperNamesMatter && request.ElementName.Length > 0 && request.ElementName != uniqueMethodName) 752AddMetadataProperty("RequestElementName", request.ElementName); 759if (wrapperNamesMatter && response.ElementName.Length > 0 && response.ElementName != (uniqueMethodName + "Response")) 760AddMetadataProperty("ResponseElementName", response.ElementName);
System.Xml (5)
System\Xml\Serialization\Compilation.cs (1)
133method.name = xmlTypeMapping.ElementName;
System\Xml\Serialization\XmlSerializer.cs (4)
892if (this.Mapping.ElementName != other.Mapping.ElementName) 910if (this.Mapping.ElementName != null) 911hashCode ^= this.Mapping.ElementName.GetHashCode();