12 references to Float
System.Data.SqlXml (3)
System\Xml\Xsl\IlGen\GenerateHelper.cs (1)
940
case XmlTypeCode.
Float
:
System\Xml\Xsl\IlGen\XmlIlVisitor.cs (1)
3984
if (code == XmlTypeCode.Double || code == XmlTypeCode.
Float
) {
System\Xml\Xsl\XmlQueryTypeFactory.cs (1)
230
public static readonly XmlQueryType FloatX = TF.Type(XmlTypeCode.
Float
, true);
System.Xml (9)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
3800
value = GetValueConverter(XmlTypeCode.
Float
).ChangeType(
System\Xml\Schema\DataTypeImplementation.cs (1)
1424
public override XmlTypeCode TypeCode { get { return XmlTypeCode.
Float
; }}
System\Xml\Schema\XmlSchemaDataType.cs (1)
171
case XmlTypeCode.
Float
:
System\Xml\Schema\XmlValueConverter.cs (6)
1231
if (TypeCode == XmlTypeCode.
Float
) return ((double) XmlConvert.ToSingle((string) value));
1275
if (TypeCode == XmlTypeCode.
Float
) return XmlConvert.ToSingle((string) value);
1297
if (TypeCode == XmlTypeCode.
Float
) return XmlConvert.ToString(ToSingle((double) value));
1301
if (TypeCode == XmlTypeCode.
Float
) return XmlConvert.ToString((float) value);
2945
if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.
Float
), value));
3004
if (sourceType == SingleType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.
Float
), value));