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