10 references to UInt32Type
System.Private.Xml (10)
System\Xml\Schema\XmlValueConverter.cs (10)
1105
if (destinationType ==
UInt32Type
) return Int64ToUInt32(this.ToInt64(value));
1111
if (sourceType ==
UInt32Type
) return this.ChangeType((long)(uint)value, destinationType);
1130
if (sourceType ==
UInt32Type
) return this.ChangeType((long)(uint)value, destinationType);
1141
if (destinationType ==
UInt32Type
) return Int64ToUInt32(this.ToInt64(value));
2254
if (sourceType ==
UInt32Type
) return XmlConvert.ToString((uint)value);
2348
if (destinationType ==
UInt32Type
) return Int64ToUInt32(XmlConvert.ToInt64((string)value));
2423
if (destinationType ==
UInt32Type
)
2520
if (clrType ==
UInt32Type
) return true;
2807
if (sourceType ==
UInt32Type
) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.UnsignedInt), value));
2997
if (itemTypeDst ==
UInt32Type
) return ToArray<uint>(value, nsResolver);