20 references to ToUInt64
dotnet-svcutil-lib (2)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\EnumDataContract.cs (2)
321tempValues.Add((long)Convert.ToUInt64(enumValue, null)); 335long longValue = IsULong ? (long)Convert.ToUInt64(value, null) : Convert.ToInt64(value, null);
Microsoft.AspNetCore.Grpc.JsonTranscoding (1)
src\Grpc\JsonTranscoding\src\Shared\ServiceDescriptorHelpers.cs (1)
146return Convert.ToUInt64(value, CultureInfo.InvariantCulture);
Microsoft.AspNetCore.Grpc.Swagger (1)
src\Grpc\JsonTranscoding\src\Shared\ServiceDescriptorHelpers.cs (1)
146return Convert.ToUInt64(value, CultureInfo.InvariantCulture);
System.ComponentModel.TypeConverter (1)
System\ComponentModel\EnumConverter.cs (1)
73unchecked((long)Convert.ToUInt64(enumVal, culture)) :
System.Data.Common (10)
System\Data\Filter\BinaryNode.cs (10)
386checked { value = Convert.ToUInt64(vLeft, FormatProvider) + Convert.ToUInt64(vRight, FormatProvider); } 569checked { value = Convert.ToUInt64(vLeft, FormatProvider) - Convert.ToUInt64(vRight, FormatProvider); } 708checked { value = Convert.ToUInt64(vLeft, FormatProvider) * Convert.ToUInt64(vRight, FormatProvider); } 804checked { value = Convert.ToUInt64(vLeft, FormatProvider) / Convert.ToUInt64(vRight, FormatProvider); } 1046value = Convert.ToUInt64(vLeft, FormatProvider) % Convert.ToUInt64(vRight, FormatProvider);
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\DateTime.cs (1)
838_dateData = Convert.ToUInt64(enumerator.Value, CultureInfo.InvariantCulture);
System.Private.DataContractSerialization (2)
System\Runtime\Serialization\EnumDataContract.cs (2)
271tempValues.Add((long)Convert.ToUInt64(enumValue, null)); 285long longValue = IsULong ? (long)Convert.ToUInt64(value, null) : Convert.ToInt64(value, null);
System.Runtime.Serialization.Formatters (2)
System\Runtime\Serialization\Formatter.cs (1)
154WriteUInt64(Convert.ToUInt64(data, CultureInfo.InvariantCulture), memberName);
System\Runtime\Serialization\FormatterConverter.cs (1)
96return System.Convert.ToUInt64(value, CultureInfo.InvariantCulture);