2 implementations of Value
System.Private.CoreLib (2)
src\System\Reflection\RtFieldInfo.cs (1)
46RuntimeFieldHandleInternal IRuntimeFieldInfo.Value => new RuntimeFieldHandleInternal(m_fieldHandle);
src\System\RuntimeHandles.cs (1)
1387RuntimeFieldHandleInternal IRuntimeFieldInfo.Value => m_fieldHandle;
8 references to Value
System.Private.CoreLib (8)
src\System\Reflection\RuntimeModule.cs (1)
198RuntimeType declaringType = RuntimeFieldHandle.GetApproxDeclaringType(fieldHandle.Value);
src\System\Runtime\CompilerServices\RuntimeHelpers.CoreCLR.cs (2)
28if (!RuntimeFieldHandle.GetRVAFieldInfo(fldInfo.Value, out void* address, out uint size)) 98if (!RuntimeFieldHandle.GetRVAFieldInfo(fldInfo.Value, out void* data, out uint totalSize))
src\System\RuntimeHandles.cs (4)
1409public IntPtr Value => m_ptr != null ? m_ptr.Value.Value : IntPtr.Zero; 1461string name = GetUtf8Name(field.Value).ToString(); 1499RuntimeType type = GetApproxDeclaringType(field.Value); 2015Init(null, 0, fieldHandle.Value, default);
src\System\RuntimeType.CoreCLR.cs (1)
1966RuntimeFieldHandleInternal fieldHandle = field.Value;