4 overrides of ComputeCallingConvention
System.Reflection.MetadataLoadContext (4)
System\Reflection\TypeLoading\General\Sentinels.cs (1)
43protected sealed override CallingConventions ComputeCallingConvention() => throw null!;
System\Reflection\TypeLoading\Methods\RoConstructedGenericMethod.cs (1)
37protected sealed override CallingConventions ComputeCallingConvention() => _genericMethodDefinition.CallingConvention;
System\Reflection\TypeLoading\Methods\RoDefinitionMethod.cs (1)
71protected sealed override CallingConventions ComputeCallingConvention() => _decoder.ComputeCallingConvention();
System\Reflection\TypeLoading\Methods\RoSyntheticMethod.cs (1)
39protected sealed override CallingConventions ComputeCallingConvention() => CallingConventions.Standard | CallingConventions.HasThis;
1 reference to ComputeCallingConvention
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Methods\RoMethod.cs (1)
58public sealed override CallingConventions CallingConvention => (_lazyCallingConventions == CallingConventionsSentinel) ? (_lazyCallingConventions = ComputeCallingConvention()) : _lazyCallingConventions;