10 references to UInt64Type
System.Xml (10)
System\Xml\Schema\XmlValueConverter.cs (10)
1146
if (destinationType ==
UInt64Type
) return DecimalToUInt64(this.ToDecimal(value));
1152
if (sourceType ==
UInt64Type
) return this.ChangeType((decimal) (ulong) value, destinationType);
1170
if (sourceType ==
UInt64Type
) return this.ChangeType((decimal) (ulong) value, destinationType);
1180
if (destinationType ==
UInt64Type
) return DecimalToUInt64(this.ToDecimal(value));
2393
if (sourceType ==
UInt64Type
) return XmlConvert.ToString((ulong) value);
2498
if (destinationType ==
UInt64Type
) return DecimalToUInt64(XmlConvert.ToDecimal((string) value));
2560
if (destinationType ==
UInt64Type
) {
2644
if (clrType ==
UInt64Type
) return true;
3009
if (sourceType ==
UInt64Type
) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.UnsignedLong), value));
3181
if (itemTypeDst ==
UInt64Type
) return ToArray<ulong>(value, nsResolver);