2 writes to action
System.Web.Services (2)
System\Web\Services\Protocols\SoapReflector.cs (2)
350
soapMethod.
action
= methodAttribute.action;
352
soapMethod.
action
= GetDefaultAction(defaultNs, methodInfo);
11 references to action
System.Web.Services (11)
System\Web\Services\Description\Soap12ProtocolReflector.cs (1)
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)
68
OperationBinding.Extensions.Add(CreateSoapOperationBinding(soapMethod.rpc ? SoapBindingStyle.Rpc : SoapBindingStyle.Document, soapMethod.
action
));
System\Web\Services\Protocols\SoapClientProtocol.cs (1)
83
clientMethod.action = soapMethod.
action
;
System\Web\Services\Protocols\SoapReflector.cs (1)
351
if (soapMethod.
action
== null)
System\Web\Services\Protocols\SoapServerMethod.cs (1)
204
this.action = soapMethod.
action
;
System\Web\Services\Protocols\SoapServerProtocol.cs (6)
135
serverMethod.action = soapMethod.
action
;
171
if (methods[soapMethod.
action
] == null)
172
methods[soapMethod.
action
] = serverMethod;
176
SoapServerMethod duplicateMethod = (SoapServerMethod)methods[soapMethod.
action
];
177
throw new SoapException(Res.GetString(Res.TheMethodsAndUseTheSameSoapActionWhenTheService3, serverMethod.methodInfo.Name, duplicateMethod.methodInfo.Name, soapMethod.
action
), new XmlQualifiedName(Soap.Code.Client, Soap.Namespace));
179
duplicateMethods[soapMethod.
action
] = serverMethod;