1 write to requestElementName
System.Web.Services (1)
System\Web\Services\Protocols\SoapReflector.cs (1)
393soapMethod.requestElementName = new XmlQualifiedName(elementName, elementNamespace);
10 references to requestElementName
System.Web.Services (10)
System\Web\Services\Description\Soap12ProtocolReflector.cs (3)
102DealWithAmbiguity(action, SoapMethod.requestElementName.ToString(), soapOperation); 159throw new InvalidOperationException(Res.GetString(Res.TheMethodsAndUseTheSameRequestElementAndSoapActionXmlns6, operation.Method.name, operation.DuplicateByRequestElement.Method.name, operation.Method.requestElementName.Name, operation.Method.requestElementName.Namespace, operation.DuplicateBySoapAction.Method.name, operation.Method.action));
System\Web\Services\Protocols\SoapServerProtocol.cs (7)
167if (soap11 && !routingOnSoapAction && soapMethod.requestElementName.IsEmpty) 182if (methods[soapMethod.requestElementName] == null) 183methods[soapMethod.requestElementName] = serverMethod; 187SoapServerMethod duplicateMethod = (SoapServerMethod)methods[soapMethod.requestElementName]; 188throw new SoapException(Res.GetString(Res.TheMethodsAndUseTheSameRequestElementXmlns4, serverMethod.methodInfo.Name, duplicateMethod.methodInfo.Name, soapMethod.requestElementName.Name, soapMethod.requestElementName.Namespace), new XmlQualifiedName(Soap.Code.Client, Soap.Namespace)); 190duplicateMethods[soapMethod.requestElementName] = serverMethod;