10 references to UInt64Type
System.Private.Xml (10)
System\Xml\Schema\XmlValueConverter.cs (10)
1106
if (destinationType ==
UInt64Type
) return DecimalToUInt64(this.ToDecimal(value));
1112
if (sourceType ==
UInt64Type
) return this.ChangeType((decimal)(ulong)value, destinationType);
1131
if (sourceType ==
UInt64Type
) return this.ChangeType((decimal)(ulong)value, destinationType);
1142
if (destinationType ==
UInt64Type
) return DecimalToUInt64(this.ToDecimal(value));
2255
if (sourceType ==
UInt64Type
) return XmlConvert.ToString((ulong)value);
2349
if (destinationType ==
UInt64Type
) return DecimalToUInt64(XmlConvert.ToDecimal((string)value));
2427
if (destinationType ==
UInt64Type
)
2521
if (clrType ==
UInt64Type
) return true;
2808
if (sourceType ==
UInt64Type
) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.UnsignedLong), value));
2998
if (itemTypeDst ==
UInt64Type
) return ToArray<ulong>(value, nsResolver);