1 write to ReturnType
System.Reflection.Metadata (1)
System\Reflection\Metadata\Signatures\MethodSignature.cs (1)
45ReturnType = returnType;
10 references to ReturnType
ILAssembler (2)
EntityRegistry.cs (2)
847signature.ReturnType.WriteBlobTo(retTypeBuilder.Builder); 1003methodSignature.ReturnType.WriteBlobTo(retTypeBuilder.Builder);
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\StackWalk\GC\GcScanner.cs (1)
384bool hasRetBuf = methodSig.ReturnType is GcTypeKind.Other;
System.Reflection.MetadataLoadContext (7)
System\Reflection\TypeLoading\General\Ecma\EcmaSignatureTypeProviderForToString.cs (1)
60sb.Append(signature.ReturnType);
System\Reflection\TypeLoading\MethodBase\Ecma\EcmaMethodDecoder.cs (3)
82Type parameterType = position == -1 ? sig.ReturnType : sig.ParameterTypes[position]; 88Type parameterType = position == -1 ? sig.ReturnType : sig.ParameterTypes[position]; 101results[-1] = sig.ReturnType;
System\Reflection\TypeLoading\Properties\Ecma\EcmaProperty.cs (2)
60protected sealed override Type ComputePropertyType() => PropertyDefinition.DecodeSignature(_module, TypeContext).ReturnType; 81sb.Append(sig.ReturnType);
System\Reflection\TypeLoading\Types\RoFunctionPointerType.cs (1)
35_returnType = signature.ReturnType;