10 references to Long
System.Private.Xml (10)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
4231value = GetValueConverter(XmlTypeCode.Long).ChangeType(
System\Xml\Schema\ConstraintStruct.cs (1)
272case XmlTypeCode.Long:
System\Xml\Schema\DataTypeImplementation.cs (1)
3217public override XmlTypeCode TypeCode { get { return XmlTypeCode.Long; } }
System\Xml\Schema\XmlSchemaDataType.cs (1)
158XmlTypeCode.Long => "Long",
System\Xml\Schema\XmlValueConverter.cs (2)
2733if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Long), (long)value)); 2801if (sourceType == Int64Type) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Long), (long)value));
System\Xml\Xsl\Runtime\XsltConvert.cs (2)
289case XmlTypeCode.Long: 295case XmlTypeCode.Long:
System\Xml\Xsl\XmlQueryType.cs (1)
778/* Int */ XmlTypeCode.Long,
System\Xml\Xsl\XmlQueryTypeFactory.cs (1)
225public static readonly XmlQueryType LongX = TF.Type(XmlTypeCode.Long, true);