25 references to Type
System.Data.SqlXml (25)
System\Xml\Xsl\QIL\QilXmlReader.cs (1)
431types[i] = XmlQueryTypeFactory.Type((XmlTypeCode)Enum.Parse(typeof(XmlTypeCode), codes[i]), strict);
System\Xml\Xsl\XmlQueryTypeFactory.cs (24)
189public static readonly XmlQueryType Item = TF.Type(XmlTypeCode.Item, false); 191public static readonly XmlQueryType Node = TF.Type(XmlTypeCode.Node, false); 193public static readonly XmlQueryType Element = TF.Type(XmlTypeCode.Element, false); 195public static readonly XmlQueryType Document = TF.Type(XmlTypeCode.Document, false); 197public static readonly XmlQueryType Attribute = TF.Type(XmlTypeCode.Attribute, false); 200public static readonly XmlQueryType Namespace = TF.Type(XmlTypeCode.Namespace, false); 202public static readonly XmlQueryType Text = TF.Type(XmlTypeCode.Text, false); 204public static readonly XmlQueryType Comment = TF.Type(XmlTypeCode.Comment, false); 206public static readonly XmlQueryType PI = TF.Type(XmlTypeCode.ProcessingInstruction, false); 217public static readonly XmlQueryType AnyAtomicType = TF.Type(XmlTypeCode.AnyAtomicType, false); 219public static readonly XmlQueryType String = TF.Type(XmlTypeCode.String, false); 220public static readonly XmlQueryType StringX = TF.Type(XmlTypeCode.String, true); 222public static readonly XmlQueryType Boolean = TF.Type(XmlTypeCode.Boolean, false); 223public static readonly XmlQueryType BooleanX = TF.Type(XmlTypeCode.Boolean, true); 224public static readonly XmlQueryType Int = TF.Type(XmlTypeCode.Int, false); 225public static readonly XmlQueryType IntX = TF.Type(XmlTypeCode.Int, true); 227public static readonly XmlQueryType IntegerX = TF.Type(XmlTypeCode.Integer, true); 228public static readonly XmlQueryType LongX = TF.Type(XmlTypeCode.Long, true); 229public static readonly XmlQueryType DecimalX = TF.Type(XmlTypeCode.Decimal, true); 230public static readonly XmlQueryType FloatX = TF.Type(XmlTypeCode.Float, true); 231public static readonly XmlQueryType Double = TF.Type(XmlTypeCode.Double, false); 232public static readonly XmlQueryType DoubleX = TF.Type(XmlTypeCode.Double, true); 233public static readonly XmlQueryType DateTimeX = TF.Type(XmlTypeCode.DateTime, true); 234public static readonly XmlQueryType QNameX = TF.Type(XmlTypeCode.QName, true);