6 overrides of GetFunctionPointerCallingConventions
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
121
public override Type[]
GetFunctionPointerCallingConventions
() => _unmodifiedType.GetFunctionPointerCallingConventions();
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureFunctionPointerType.cs (1)
26
public override Type[]
GetFunctionPointerCallingConventions
() => (Type[])_callingConventions.Clone();
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureModifiedType.cs (1)
53
public override Type[]
GetFunctionPointerCallingConventions
() => _unmodifiedType.GetFunctionPointerCallingConventions();
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
93
public override Type[]
GetFunctionPointerCallingConventions
() => typeImpl.GetFunctionPointerCallingConventions();
src\System\RuntimeType.CoreCLR.cs (1)
3823
public override Type[]
GetFunctionPointerCallingConventions
()
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoType.cs (1)
58
public override Type[]
GetFunctionPointerCallingConventions
()
5 references to GetFunctionPointerCallingConventions
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
121
public override Type[] GetFunctionPointerCallingConventions() => _unmodifiedType.
GetFunctionPointerCallingConventions
();
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureModifiedType.cs (1)
53
public override Type[] GetFunctionPointerCallingConventions() => _unmodifiedType.
GetFunctionPointerCallingConventions
();
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
93
public override Type[] GetFunctionPointerCallingConventions() => typeImpl.
GetFunctionPointerCallingConventions
();
src\System\Reflection\Emit\SignatureHelper.cs (1)
135
if (functionPointerType.
GetFunctionPointerCallingConventions
() is { Length: 1 } conventions)
System.Reflection.Emit (1)
System\Reflection\Emit\SignatureHelper.cs (1)
238
if (type.
GetFunctionPointerCallingConventions
() is Type[] conventions && conventions.Length == 1)