1 write to ReturnType
System.Reflection.Metadata (1)
System\Reflection\Metadata\Signatures\MethodSignature.cs (1)
45
ReturnType
= returnType;
9 references to ReturnType
Microsoft.CodeAnalysis.Test.Utilities (2)
Metadata\MetadataReaderUtils.cs (2)
354
return $"{signature.
ReturnType
} {DumpRec(reader, method.GetDeclaringType())}.{reader.GetString(method.Name)}({parameters})";
363
return $"{signature.
ReturnType
} {DumpRec(reader, member.Parent)}.{reader.GetString(member.Name)}({parameters})";
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
;