10 references to ReturnType
System.Web.Services (10)
System\Web\Services\Description\HttpProtocolReflector.cs (1)
42if (Method.ReturnType == typeof(void)) {
System\Web\Services\Description\MimeXmlReflector.cs (2)
28if (typeof(XmlNode).IsAssignableFrom(ReflectionContext.Method.ReturnType)) { 40XmlTypeMapping xmlTypeMapping = ReflectionContext.ReflectionImporter.ImportTypeMapping(methodInfo.ReturnType, a.XmlRoot);
System\Web\Services\Protocols\HttpServerProtocol.cs (1)
39if (methodInfo.ReturnType == typeof(void)) {
System\Web\Services\Protocols\SoapReflector.cs (4)
357if (methodInfo.ReturnType != typeof(void)) throw new ArgumentException(Res.GetString(Res.WebOneWayReturnValue), "methodInfo"); 399if (methodInfo.ReturnType != typeof(void)) { 419if (methodInfo.ReturnType != typeof(void)) { 422member.MemberType = methodInfo.ReturnType;
System\Web\Services\Protocols\TextReturnReader.cs (1)
21return new PatternMatcher(methodInfo.ReturnType);
System\Web\Services\Protocols\XmlReturnReader.cs (1)
33Type type = methodInfo.ReturnType;