Esempio n. 1
0
        public AttributeEntries GetAttributeEntries(XmlSchemaComplexType complexType)
        {
            var attributeFinder = new AttributeFinder(this);

            attributeFinder.Traverse(complexType);
            return(attributeFinder.GetAttributeEntries());
        }
Esempio n. 2
0
        public AttributeEntries GetAttributeEntries(XmlSchemaAttributeGroup attributeGroup)
        {
            var attributeFinder = new AttributeFinder(this);

            attributeFinder.Traverse(attributeGroup);
            return(attributeFinder.GetAttributeEntries());
        }
Esempio n. 3
0
        public AttributeEntries GetAttributeEntries(XmlSchemaElement element)
        {
            var attributeFinder = new AttributeFinder(this);

            attributeFinder.Traverse(element);
            return(attributeFinder.GetAttributeEntries());
        }
Esempio n. 4
0
 public AttributeEntries GetAttributeEntries(XmlSchemaComplexType complexType)
 {
     var attributeFinder = new AttributeFinder(this);
     attributeFinder.Traverse(complexType);
     return attributeFinder.GetAttributeEntries();
 }
Esempio n. 5
0
 public AttributeEntries GetAttributeEntries(XmlSchemaAttributeGroup attributeGroup)
 {
     var attributeFinder = new AttributeFinder(this);
     attributeFinder.Traverse(attributeGroup);
     return attributeFinder.GetAttributeEntries();
 }
Esempio n. 6
0
 public AttributeEntries GetAttributeEntries(XmlSchemaElement element)
 {
     var attributeFinder = new AttributeFinder(this);
     attributeFinder.Traverse(element);
     return attributeFinder.GetAttributeEntries();
 }