14 instantiations of ItemType
System.Data.SqlXml (14)
System\Xml\Xsl\XmlQueryTypeFactory.cs (14)
362BuiltInItemTypes[i] = new ItemType(typeCode, XmlQualifiedNameTest.Wildcard, XmlSchemaComplexType.AnyType, false, false, false); 372BuiltInItemTypes[i] = new ItemType(typeCode, XmlQualifiedNameTest.Wildcard, XmlSchemaComplexType.AnyType, false, false, true); 377BuiltInItemTypes[i] = new ItemType(typeCode, XmlQualifiedNameTest.Wildcard, DatatypeImplementation.AnySimpleType, false, false, true); 382BuiltInItemTypes[i] = new ItemType(typeCode, XmlQualifiedNameTest.Wildcard, DatatypeImplementation.AnyAtomicType, false, false, true); 388BuiltInItemTypes[i] = new ItemType(typeCode, XmlQualifiedNameTest.Wildcard, DatatypeImplementation.UntypedAtomicType, false, true, true); 394BuiltInItemTypes[i] = new ItemType(typeCode, XmlQualifiedNameTest.Wildcard, builtInType, false, false, true); 395BuiltInItemTypesStrict[i] = new ItemType(typeCode, XmlQualifiedNameTest.Wildcard, builtInType, false, true, true); 400UntypedDocument = new ItemType(XmlTypeCode.Document, XmlQualifiedNameTest.Wildcard, XmlSchemaComplexType.UntypedAnyType, false, false, true); 401UntypedElement = new ItemType(XmlTypeCode.Element, XmlQualifiedNameTest.Wildcard, XmlSchemaComplexType.UntypedAnyType, false, false, true); 402UntypedAttribute = new ItemType(XmlTypeCode.Attribute, XmlQualifiedNameTest.Wildcard, DatatypeImplementation.UntypedAtomicType, false, false, true); 403NodeNotRtf = new ItemType(XmlTypeCode.Node, XmlQualifiedNameTest.Wildcard, XmlSchemaComplexType.AnyType, false, false, true); 433return new ItemType(code, XmlQualifiedNameTest.Wildcard, schemaType, false, isStrict, true); 459return new ItemType(code, nameTest, contentType, isNillable, false, true); 472return new ItemType(code, nameTest, contentType, isNillable, false, true);
11 references to ItemType
System.Data.SqlXml (11)
System\Xml\Xsl\XmlQueryTypeFactory.cs (11)
35return ItemType.Create(code, isStrict); 51return ItemType.Create(schemaType, isStrict); 235public static readonly XmlQueryType UntypedDocument = ItemType.UntypedDocument; 236public static readonly XmlQueryType UntypedElement = ItemType.UntypedElement; 237public static readonly XmlQueryType UntypedAttribute = ItemType.UntypedAttribute; 240public static readonly XmlQueryType NodeNotRtf = ItemType.NodeNotRtf; 684return ItemType.Create(NodeKindToTypeCode[Bits.LeastPosition((uint) nodeKinds)], false); 688members.Add(ItemType.Create(NodeKindToTypeCode[Bits.LeastPosition((uint) nodeKinds)], false)); 1098return ItemType.Create(NodeKindToTypeCode[(int)kind], nameTest, contentType, isNillable); 1116if (type.GetType() == typeof(ItemType)) 1136case 0: return ItemType.Create(reader);