15 references to Int
System.Private.Xml (15)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
4224value = GetValueConverter(XmlTypeCode.Int).ChangeType(
System\Xml\Schema\ConstraintStruct.cs (1)
270case XmlTypeCode.Int:
System\Xml\Schema\DataTypeImplementation.cs (1)
3271public override XmlTypeCode TypeCode { get { return XmlTypeCode.Int; } }
System\Xml\Schema\XmlSchemaDataType.cs (1)
159XmlTypeCode.Int => "Int",
System\Xml\Schema\XmlValueConverter.cs (2)
2723if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Int), (int)value)); 2800if (sourceType == Int32Type) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Int), (int)value));
System\Xml\Xsl\IlGen\GenerateHelper.cs (2)
955case XmlTypeCode.Int: 1418case XmlTypeCode.Int: meth = XmlILMethods.SortKeyInt; break;
System\Xml\Xsl\IlGen\XmlIlVisitor.cs (2)
1765case XmlTypeCode.Int: 3322ClrCompare(allowKinds ? QilNodeType.Eq : QilNodeType.Ne, XmlTypeCode.Int);
System\Xml\Xsl\Runtime\XsltConvert.cs (2)
288case XmlTypeCode.Int: 294case XmlTypeCode.Int:
System\Xml\Xsl\XmlQueryType.cs (1)
779/* Short */ XmlTypeCode.Int,
System\Xml\Xsl\XmlQueryTypeFactory.cs (2)
221public static readonly XmlQueryType Int = TF.Type(XmlTypeCode.Int, false); 222public static readonly XmlQueryType IntX = TF.Type(XmlTypeCode.Int, true);