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