10 references to Long
System.Data.SqlXml (4)
System\Xml\Xsl\Runtime\XsltConvert.cs (2)
296case XmlTypeCode.Long: 302case XmlTypeCode.Long:
System\Xml\Xsl\XmlQueryType.cs (1)
753/* Int */ XmlTypeCode.Long,
System\Xml\Xsl\XmlQueryTypeFactory.cs (1)
228public static readonly XmlQueryType LongX = TF.Type(XmlTypeCode.Long, true);
System.Xml (6)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
3770value = GetValueConverter(XmlTypeCode.Long).ChangeType(
System\Xml\Schema\ConstraintStruct.cs (1)
242case XmlTypeCode.Long:
System\Xml\Schema\DataTypeImplementation.cs (1)
2973public override XmlTypeCode TypeCode { get { return XmlTypeCode.Long; }}
System\Xml\Schema\XmlSchemaDataType.cs (1)
227case XmlTypeCode.Long:
System\Xml\Schema\XmlValueConverter.cs (2)
2936if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Long), (long) value)); 3002if (sourceType == Int64Type) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Long), (long) value));