2 writes to name
System.Web.Services (2)
System\Web\Services\Protocols\SoapReflector.cs (2)
308soapMethod.name = webMethodAttribute.MessageName; 309if (soapMethod.name.Length == 0) soapMethod.name = methodInfo.Name;
9 references to name
System.Web.Services (9)
System\Web\Services\Description\Soap12ProtocolReflector.cs (3)
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\Description\SoapProtocolReflector.cs (1)
74CreateHeaderMessages(soapMethod.name, soapMethod.use, soapMethod.inHeaderMappings, soapMethod.outHeaderMappings, soapMethod.headers, soapMethod.rpc);
System\Web\Services\Protocols\SoapClientProtocol.cs (1)
109methods.Add(soapMethod.name, clientMethod);
System\Web\Services\Protocols\SoapReflector.cs (4)
309if (soapMethod.name.Length == 0) soapMethod.name = methodInfo.Name; 317requestElementName = methodAttribute.requestName.Length == 0 ? soapMethod.name : methodAttribute.requestName; 336responseElementName = methodAttribute.responseName.Length == 0 ? soapMethod.name + "Response" : methodAttribute.responseName; 421member.MemberName = identifiers.MakeUnique(soapMethod.name + "Result");