Base:
property
ReturnType
System.Reflection.MethodInfo.ReturnType
6 references to ReturnType
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Reflection\InvokerEmitUtil.cs (1)
250returnType = (RuntimeType)rmi.ReturnType;
src\libraries\System.Private.CoreLib\src\System\Reflection\RuntimeMethodInfo.cs (4)
21|| IsDisallowedByRefType(ReturnType) // Return type is an invalid by-ref (i.e., by-ref-like or void*) 41if (ReturnType.IsByRefLike) // Check for byref-like types for return 83else if (ReturnType.IsByRef) 85Type elementType = ReturnType.GetElementType()!;
src\System\Reflection\RuntimeMethodInfo.CoreCLR.cs (1)
140sbName.Append(ReturnType.FormatTypeName());