8 writes to DoubleValue
System.Runtime.InteropServices.JavaScript (8)
System\Runtime\InteropServices\JavaScript\Marshaling\JSMarshalerArgument.DateTime.cs (4)
39slot.DoubleValue = (double)value.ToUnixTimeMilliseconds(); 73slot.DoubleValue = value.Value.ToUnixTimeMilliseconds(); ; 110slot.DoubleValue = new DateTimeOffset(value.Ticks, TimeSpan.Zero).ToUnixTimeMilliseconds(); 144slot.DoubleValue = new DateTimeOffset(value.Value.Ticks, TimeSpan.Zero).ToUnixTimeMilliseconds();
System\Runtime\InteropServices\JavaScript\Marshaling\JSMarshalerArgument.Double.cs (2)
39slot.DoubleValue = value; 73slot.DoubleValue = value.Value;
System\Runtime\InteropServices\JavaScript\Marshaling\JSMarshalerArgument.Int52.cs (2)
47slot.DoubleValue = value; 85slot.DoubleValue = value.Value;
8 references to DoubleValue
System.Runtime.InteropServices.JavaScript (8)
System\Runtime\InteropServices\JavaScript\Marshaling\JSMarshalerArgument.DateTime.cs (4)
25value = DateTimeOffset.FromUnixTimeMilliseconds((long)slot.DoubleValue); 57value = DateTimeOffset.FromUnixTimeMilliseconds((long)slot.DoubleValue); 96value = DateTimeOffset.FromUnixTimeMilliseconds((long)slot.DoubleValue).UtcDateTime; 128value = DateTimeOffset.FromUnixTimeMilliseconds((long)slot.DoubleValue).UtcDateTime;
System\Runtime\InteropServices\JavaScript\Marshaling\JSMarshalerArgument.Double.cs (2)
25value = slot.DoubleValue; 57value = slot.DoubleValue;
System\Runtime\InteropServices\JavaScript\Marshaling\JSMarshalerArgument.Int52.cs (2)
28value = (long)slot.DoubleValue; 65value = (long)slot.DoubleValue;