2 overrides of ComputeCallingConvention
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Constructors\RoDefinitionConstructor.cs (1)
32protected sealed override CallingConventions ComputeCallingConvention() => _decoder.ComputeCallingConvention();
System\Reflection\TypeLoading\Constructors\RoSyntheticConstructor.cs (1)
36protected sealed override CallingConventions ComputeCallingConvention() => CallingConventions.Standard | CallingConventions.HasThis;
1 reference to ComputeCallingConvention
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Constructors\RoConstructor.cs (1)
50public sealed override CallingConventions CallingConvention => (_lazyCallingConventions == CallingConventionsSentinel) ? (_lazyCallingConventions = ComputeCallingConvention()) : _lazyCallingConventions;