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