1 write to FieldTypeHandle
System.Private.Reflection.Execution (1)
Internal\Reflection\Execution\FieldAccessors\StaticFieldAccessor.cs (1)
21FieldTypeHandle = fieldTypeHandle;
11 references to FieldTypeHandle
System.Private.Reflection.Execution (11)
Internal\Reflection\Execution\FieldAccessors\PointerTypeFieldAccessorForStaticFields.cs (3)
25return RuntimeAugments.LoadPointerTypeField(gcStaticsRegion, FieldOffset, FieldTypeHandle); 29return RuntimeAugments.LoadPointerTypeField(StaticsBase + FieldOffset, FieldTypeHandle); 34return RuntimeAugments.LoadPointerTypeField(threadStaticRegion, FieldOffset, FieldTypeHandle);
Internal\Reflection\Execution\FieldAccessors\ValueTypeFieldAccessorForStaticFields.cs (6)
25return RuntimeAugments.LoadValueTypeField(gcStaticsRegion, FieldOffset, FieldTypeHandle); 29return RuntimeAugments.LoadValueTypeField(StaticsBase + FieldOffset, FieldTypeHandle); 34return RuntimeAugments.LoadValueTypeField(threadStaticRegion, FieldOffset, FieldTypeHandle); 42RuntimeAugments.StoreValueTypeField(gcStaticsRegion, FieldOffset, value, FieldTypeHandle); 46RuntimeAugments.StoreValueTypeField(StaticsBase + FieldOffset, value, FieldTypeHandle); 52RuntimeAugments.StoreValueTypeField(threadStaticsRegion, FieldOffset, value, FieldTypeHandle);
Internal\Reflection\Execution\FieldAccessors\WritableStaticFieldAccessor.cs (2)
24value = RuntimeAugments.CheckArgument(value, FieldTypeHandle, binderBundle); 36value = RuntimeAugments.CheckArgumentForDirectFieldAccess(value, FieldTypeHandle);