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