13 references to DateTime
System.Private.Xml (13)
System\Xml\BinaryXml\XmlBinaryReader.cs (2)
4335value = GetValueConverter(XmlTypeCode.DateTime).ChangeType( 4343value = GetValueConverter(XmlTypeCode.DateTime).ChangeType(
System\Xml\Schema\DataTypeImplementation.cs (1)
1991public override XmlTypeCode TypeCode { get { return XmlTypeCode.DateTime; } }
System\Xml\Schema\XmlSchemaDataType.cs (1)
133XmlTypeCode.DateTime => "DateTime",
System\Xml\Schema\XmlValueConverter.cs (3)
2693if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.DateTime), (DateTime)value)); 2795if (sourceType == DateTimeType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.DateTime), (DateTime)value)); 2796if (sourceType == DateTimeOffsetType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.DateTime), (DateTimeOffset)value));
System\Xml\Schema\XsdDateTime.cs (1)
692XmlTypeCode.DateTime,
System\Xml\Xsl\IlGen\GenerateHelper.cs (1)
1421case XmlTypeCode.DateTime: meth = XmlILMethods.SortKeyDateTime; break;
System\Xml\Xsl\Runtime\XsltConvert.cs (2)
267case XmlTypeCode.DateTime: 308case XmlTypeCode.DateTime:
System\Xml\Xsl\Runtime\XsltFunctions.cs (1)
448case XmlTypeCode.DateTime:
System\Xml\Xsl\XmlQueryTypeFactory.cs (1)
230public static readonly XmlQueryType DateTimeX = TF.Type(XmlTypeCode.DateTime, true);