10 references to TryGetInt64
Microsoft.Diagnostics.DataContractReader (1)
ContractDescriptorParser.cs (1)
317if (reader.TryGetInt64(out long signedValue))
Microsoft.DotNet.TemplateLocator (1)
src\sdk\src\Resolvers\Microsoft.NET.Sdk.WorkloadManifestReader\WorkloadManifestReader.SystemTextJson.cs (1)
118public bool TryGetInt64(out long value) => reader.TryGetInt64(out value);
Microsoft.ML.SearchSpace (1)
Converter\ParameterConverter.cs (1)
25if (reader.TryGetInt64(out var _long))
Microsoft.NET.Build.Tasks (1)
src\sdk\src\Resolvers\Microsoft.NET.Sdk.WorkloadManifestReader\WorkloadManifestReader.SystemTextJson.cs (1)
118public bool TryGetInt64(out long value) => reader.TryGetInt64(out value);
Microsoft.NET.Sdk.WorkloadManifestReader (1)
WorkloadManifestReader.SystemTextJson.cs (1)
118public bool TryGetInt64(out long value) => reader.TryGetInt64(out value);
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)
35if (reader.TryGetInt64(out long value))
NuGet.Protocol (1)
Converters\SafeBoolStjConverter.cs (1)
28return reader.TryGetInt64(out long l) && l == 1;
System.Text.Json (2)
System\Text\Json\Reader\Utf8JsonReader.TryGet.cs (1)
449if (!TryGetInt64(out long value))
System\Text\Json\Serialization\Converters\Value\EnumConverter.cs (1)
118case TypeCode.Int64 when reader.TryGetInt64(out long int64): return (T)(object)int64;