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