3 references to TryGetUInt64
Microsoft.Diagnostics.DataContractReader (1)
ContractDescriptorParser.cs (1)
315if (reader.TryGetUInt64(out value))
System.Text.Json (2)
System\Text\Json\Reader\Utf8JsonReader.TryGet.cs (1)
554if (!TryGetUInt64(out ulong value))
System\Text\Json\Serialization\Converters\Value\EnumConverter.cs (1)
119case TypeCode.UInt64 when reader.TryGetUInt64(out ulong uint64): return (T)(object)uint64;