2 writes to methodInfo
System.Web.Services (2)
System\Web\Services\Protocols\SoapServerMethod.cs (1)
46this.methodInfo = methodInfo;
System\Web\Services\Protocols\SoapServerProtocol.cs (1)
134serverMethod.methodInfo = soapMethod.methodInfo;
9 references to methodInfo
System.Web.Services (9)
System\Web\Services\Protocols\SoapServerMethod.cs (2)
82return methodInfo; 206this.extensionInitializers = SoapReflectedExtension.GetInitializers(this.methodInfo, soapMethod.extensions);
System\Web\Services\Protocols\SoapServerProtocol.cs (7)
137serverMethod.extensionInitializers = SoapReflectedExtension.GetInitializers(serverMethod.methodInfo, soapMethod.extensions); 168throw new SoapException(Res.GetString(Res.TheMethodDoesNotHaveARequestElementEither1, serverMethod.methodInfo.Name), new XmlQualifiedName(Soap.Code.Client, Soap.Namespace)); 177throw new SoapException(Res.GetString(Res.TheMethodsAndUseTheSameSoapActionWhenTheService3, serverMethod.methodInfo.Name, duplicateMethod.methodInfo.Name, soapMethod.action), new XmlQualifiedName(Soap.Code.Client, Soap.Namespace)); 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)); 459get { return serverMethod.methodInfo; }