6 references to GetDouble
Microsoft.Extensions.AI.Evaluation.Reporting (1)
JsonSerialization\TimeSpanConverter.cs (1)
13=> TimeSpan.FromSeconds(reader.GetDouble());
Microsoft.Extensions.AI.Evaluation.Reporting.Azure (1)
src\Libraries\Microsoft.Extensions.AI.Evaluation.Reporting\CSharp\JsonSerialization\TimeSpanConverter.cs (1)
13=> TimeSpan.FromSeconds(reader.GetDouble());
Microsoft.TestPlatform.CommunicationUtilities (1)
Serialization\ObjectConverter.cs (1)
30JsonTokenType.Number => reader.TryGetInt32(out var i) ? i : reader.TryGetInt64(out var l) ? l : reader.GetDouble(),
NuGet.ProjectModel (1)
src\nuget-client\build\Shared\Utf8JsonReaderExtensions.cs (1)
39return reader.GetDouble().ToString();
System.Text.Json (2)
System\Text\Json\Serialization\Converters\Value\DoubleConverter.cs (2)
24return reader.GetDouble(); 63return reader.GetDouble();