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