2 implementations of IRuntimeFieldInfo
System.Private.CoreLib (2)
src\System\Reflection\RtFieldInfo.cs (1)
12internal sealed unsafe class RtFieldInfo : RuntimeFieldInfo, IRuntimeFieldInfo
src\System\RuntimeHandles.cs (1)
1367internal sealed class RuntimeFieldInfoStub : IRuntimeFieldInfo
14 references to IRuntimeFieldInfo
System.Private.CoreLib (14)
src\System\Reflection\RtFieldInfo.cs (1)
46RuntimeFieldHandleInternal IRuntimeFieldInfo.Value => new RuntimeFieldHandleInternal(m_fieldHandle);
src\System\Reflection\RuntimeModule.cs (1)
196IRuntimeFieldInfo fieldHandle = moduleHandle.ResolveFieldHandle(metadataToken, typeArgs, methodArgs).GetRuntimeFieldInfo();
src\System\Runtime\CompilerServices\RuntimeHelpers.CoreCLR.cs (2)
26IRuntimeFieldInfo fldInfo = fldHandle.GetRuntimeFieldInfo(); 96IRuntimeFieldInfo fldInfo = fldHandle.GetRuntimeFieldInfo();
src\System\RuntimeHandles.cs (8)
1387RuntimeFieldHandleInternal IRuntimeFieldInfo.Value => m_fieldHandle; 1397private readonly IRuntimeFieldInfo m_ptr; 1399internal RuntimeFieldHandle(IRuntimeFieldInfo fieldInfo) 1404internal IRuntimeFieldInfo GetRuntimeFieldInfo() 1459internal static string GetName(IRuntimeFieldInfo field) 1497internal static RuntimeType GetApproxDeclaringType(IRuntimeFieldInfo field) 1888IRuntimeFieldInfo? field = null; 2012public Signature(IRuntimeFieldInfo fieldHandle, RuntimeType declaringType)
src\System\RuntimeType.CoreCLR.cs (2)
1959internal static FieldInfo GetFieldInfo(IRuntimeFieldInfo fieldHandle) 1964internal static FieldInfo GetFieldInfo(RuntimeType? reflectedType, IRuntimeFieldInfo field)