System.Xml.Xsl.XmlQueryTypeFactory.CreateElementType C# (CSharp) Method

CreateElementType() private method

Create type based on an XmlSchemaElement
private CreateElementType ( XmlSchemaElement element ) : XmlQueryType
element System.Xml.Schema.XmlSchemaElement
return XmlQueryType
        private XmlQueryType CreateElementType(XmlSchemaElement element) {
            return ItemType.Create(XmlTypeCode.Element, XmlQualifiedNameTest.New(element.QualifiedName), element.ElementSchemaType, element.IsNillable);
        }

Same methods

XmlQueryTypeFactory::CreateElementType ( string ns, bool exclude, XmlSchemaType schemaType ) : XmlQueryType