10 references to UInt32Type
System.Xml (10)
System\Xml\Schema\XmlValueConverter.cs (10)
1145
if (destinationType ==
UInt32Type
) return Int64ToUInt32(this.ToInt64(value));
1151
if (sourceType ==
UInt32Type
) return this.ChangeType((long) (uint) value, destinationType);
1169
if (sourceType ==
UInt32Type
) return this.ChangeType((long) (uint) value, destinationType);
1179
if (destinationType ==
UInt32Type
) return Int64ToUInt32(this.ToInt64(value));
2392
if (sourceType ==
UInt32Type
) return XmlConvert.ToString((uint) value);
2497
if (destinationType ==
UInt32Type
) return Int64ToUInt32(XmlConvert.ToInt64((string) value));
2557
if (destinationType ==
UInt32Type
) {
2643
if (clrType ==
UInt32Type
) return true;
3008
if (sourceType ==
UInt32Type
) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.UnsignedInt), value));
3180
if (itemTypeDst ==
UInt32Type
) return ToArray<uint>(value, nsResolver);