19 references to Method
System.Web.Services (19)
System\Web\Services\Description\HttpProtocolReflector.cs (5)
42if (Method.ReturnType == typeof(void)) { 57if (!HttpServerProtocol.AreUrlParametersSupported(Method)) 66foreach (ParameterInfo parameterInfo in Method.InParameters) { 117WebMethodAttribute methodAttribute = Method.MethodAttribute; 119if (name.Length == 0) name = Method.Name;
System\Web\Services\Description\MimeFormReflector.cs (1)
19if (!HtmlFormParameterReader.IsSupported(ReflectionContext.Method))
System\Web\Services\Description\MimeXmlReflector.cs (2)
28if (typeof(XmlNode).IsAssignableFrom(ReflectionContext.Method.ReturnType)) { 38LogicalMethodInfo methodInfo = ReflectionContext.Method;
System\Web\Services\Description\ProtocolReflector.cs (4)
197string messageName = XmlConvert.EncodeLocalName(methodAttr.MessageName.Length == 0 ? Method.Name : methodAttr.MessageName); 198bool diffNames = messageName != Method.Name; 222string messageName = XmlConvert.EncodeLocalName(methodAttr.MessageName.Length == 0 ? Method.Name : methodAttr.MessageName); 223bool diffNames = messageName != Method.Name;
System\Web\Services\Description\SoapProtocolReflector.cs (7)
60soapMethod = ReflectionContext[Method] as SoapReflectedMethod; 62soapMethod = SoapReflector.ReflectMethod(Method, false, ReflectionImporter, SoapImporter, DefaultNamespace); 63ReflectionContext[Method] = soapMethod; 66WebMethodAttribute methodAttr = Method.MethodAttribute; 198throw new InvalidOperationException(Res.GetString(Res.WsdlGenRpcLitAnonimousType, Method.DeclaringType.Name, Method.Name, member.MemberName)); 224return SoapReflector.GetSoapMethodBinding(Method);