System\Xml\Xsl\XmlQueryTypeFactory.cs (24)
186public static readonly XmlQueryType Item = TF.Type(XmlTypeCode.Item, false);
188public static readonly XmlQueryType Node = TF.Type(XmlTypeCode.Node, false);
190public static readonly XmlQueryType Element = TF.Type(XmlTypeCode.Element, false);
192public static readonly XmlQueryType Document = TF.Type(XmlTypeCode.Document, false);
194public static readonly XmlQueryType Attribute = TF.Type(XmlTypeCode.Attribute, false);
197public static readonly XmlQueryType Namespace = TF.Type(XmlTypeCode.Namespace, false);
199public static readonly XmlQueryType Text = TF.Type(XmlTypeCode.Text, false);
201public static readonly XmlQueryType Comment = TF.Type(XmlTypeCode.Comment, false);
203public static readonly XmlQueryType PI = TF.Type(XmlTypeCode.ProcessingInstruction, false);
214public static readonly XmlQueryType AnyAtomicType = TF.Type(XmlTypeCode.AnyAtomicType, false);
216public static readonly XmlQueryType String = TF.Type(XmlTypeCode.String, false);
217public static readonly XmlQueryType StringX = TF.Type(XmlTypeCode.String, true);
219public static readonly XmlQueryType Boolean = TF.Type(XmlTypeCode.Boolean, false);
220public static readonly XmlQueryType BooleanX = TF.Type(XmlTypeCode.Boolean, true);
221public static readonly XmlQueryType Int = TF.Type(XmlTypeCode.Int, false);
222public static readonly XmlQueryType IntX = TF.Type(XmlTypeCode.Int, true);
224public static readonly XmlQueryType IntegerX = TF.Type(XmlTypeCode.Integer, true);
225public static readonly XmlQueryType LongX = TF.Type(XmlTypeCode.Long, true);
226public static readonly XmlQueryType DecimalX = TF.Type(XmlTypeCode.Decimal, true);
227public static readonly XmlQueryType FloatX = TF.Type(XmlTypeCode.Float, true);
228public static readonly XmlQueryType Double = TF.Type(XmlTypeCode.Double, false);
229public static readonly XmlQueryType DoubleX = TF.Type(XmlTypeCode.Double, true);
230public static readonly XmlQueryType DateTimeX = TF.Type(XmlTypeCode.DateTime, true);
231public static readonly XmlQueryType QNameX = TF.Type(XmlTypeCode.QName, true);