6 writes to PrimitiveValue
System.Private.CoreLib (6)
src\System\Reflection\RuntimeCustomAttributeData.cs (6)
826
arg.
PrimitiveValue
= new PrimitiveValue() { Byte4 = parser.GetU1() };
831
arg.
PrimitiveValue
= new PrimitiveValue() { Byte4 = parser.GetU2() };
835
arg.
PrimitiveValue
= new PrimitiveValue() { Byte4 = parser.GetI4() };
839
arg.
PrimitiveValue
= new PrimitiveValue() { Byte8 = parser.GetI8() };
842
arg.
PrimitiveValue
= new PrimitiveValue() { Byte4 = BitConverter.SingleToInt32Bits(parser.GetR4()) };
845
arg.
PrimitiveValue
= new PrimitiveValue() { Byte8 = BitConverter.DoubleToInt64Bits(parser.GetR8()) };
2 references to PrimitiveValue
System.Private.CoreLib (2)
src\System\Reflection\RuntimeCustomAttributeData.cs (2)
561
_value = EncodedValueToRawValue(encodedArg.
PrimitiveValue
, encodedArg.CustomAttributeType.EncodedEnumType);
609
_value = EncodedValueToRawValue(encodedArg.
PrimitiveValue
, encodedType);