9 references to XsdElementName
System.ServiceModel (5)
System\ServiceModel\Description\MessageContractExporter.cs (1)
1221
AddMessagePart(message, "parameters", new XmlQualifiedName(membersMapping.
XsdElementName
, membersMapping.Namespace), XmlQualifiedName.Empty);
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (4)
393
if (this.request != null && this.IsRpc && this.Operation.IsValidateRpcWrapperName && this.request.BodyMapping.
XsdElementName
!= this.Operation.Name)
394
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SFxRpcMessageBodyPartNameInvalid, Operation.Name, this.Operation.Messages[0].MessageName, request.BodyMapping.
XsdElementName
, this.Operation.Name)));
399
if (this.reply != null && this.IsRpc && this.Operation.IsValidateRpcWrapperName && this.reply.BodyMapping.
XsdElementName
!= responseName.EncodedName)
400
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SFxRpcMessageBodyPartNameInvalid, Operation.Name, this.Operation.Messages[1].MessageName, reply.BodyMapping.
XsdElementName
, responseName.EncodedName)));
System.Web.Services (4)
System\Web\Services\Description\MimeXmlReflector.cs (1)
43
part.Element = new XmlQualifiedName(xmlTypeMapping.
XsdElementName
, xmlTypeMapping.Namespace);
System\Web\Services\Description\SoapProtocolReflector.cs (1)
188
part.Element = new XmlQualifiedName(members.
XsdElementName
, members.Namespace);
System\Web\Services\Protocols\SoapHeader.cs (1)
484
return mapping.
XsdElementName
;
System\Web\Services\Protocols\SoapReflector.cs (1)
390
elementName = soapMethod.requestMappings.
XsdElementName
;