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