Example #1
0
        public AttributeEntries GetAttributeEntries(XmlSchemaComplexType complexType)
        {
            var attributeFinder = new AttributeFinder(this);

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

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

            attributeFinder.Traverse(element);
            return(attributeFinder.GetAttributeEntries());
        }
 public AttributeEntries GetAttributeEntries(XmlSchemaComplexType complexType)
 {
     var attributeFinder = new AttributeFinder(this);
     attributeFinder.Traverse(complexType);
     return attributeFinder.GetAttributeEntries();
 }
 public AttributeEntries GetAttributeEntries(XmlSchemaAttributeGroup attributeGroup)
 {
     var attributeFinder = new AttributeFinder(this);
     attributeFinder.Traverse(attributeGroup);
     return attributeFinder.GetAttributeEntries();
 }
 public AttributeEntries GetAttributeEntries(XmlSchemaElement element)
 {
     var attributeFinder = new AttributeFinder(this);
     attributeFinder.Traverse(element);
     return attributeFinder.GetAttributeEntries();
 }