1 write to FieldTypeHandle
System.Private.Reflection.Execution (1)
Internal\Reflection\Execution\FieldAccessors\InstanceFieldAccessor.cs (1)
17this.FieldTypeHandle = fieldTypeHandle;
9 references to FieldTypeHandle
System.Private.Reflection.Execution (9)
Internal\Reflection\Execution\FieldAccessors\InstanceFieldAccessor.cs (3)
60value = RuntimeAugments.CheckArgument(value, this.FieldTypeHandle, binderBundle); 74value = RuntimeAugments.CheckArgumentForDirectFieldAccess(value, this.FieldTypeHandle); 86value = RuntimeAugments.CheckArgumentForDirectFieldAccess(value, this.FieldTypeHandle);
Internal\Reflection\Execution\FieldAccessors\PointerTypeFieldAccessorForInstanceFields.cs (2)
20return RuntimeAugments.LoadPointerTypeField(obj, OffsetPlusHeader, this.FieldTypeHandle); 25return RuntimeAugments.LoadPointerTypeFieldValueFromValueType(typedReference, this.Offset, this.FieldTypeHandle);
Internal\Reflection\Execution\FieldAccessors\ValueTypeFieldAccessorForInstanceFields.cs (4)
19return RuntimeAugments.LoadValueTypeField(obj, OffsetPlusHeader, this.FieldTypeHandle); 24return RuntimeAugments.LoadValueTypeFieldValueFromValueType(typedReference, this.Offset, this.FieldTypeHandle); 29RuntimeAugments.StoreValueTypeField(obj, OffsetPlusHeader, value, this.FieldTypeHandle); 34RuntimeAugments.StoreValueTypeFieldValueIntoValueType(typedReference, this.Offset, value, this.FieldTypeHandle);