Пример #1
0
        public AttributeEntries GetAttributeEntries(XmlSchemaComplexType complexType)
        {
            var attributeFinder = new AttributeFinder(this);

            attributeFinder.Traverse(complexType);
            return(attributeFinder.GetAttributeEntries());
        }
Пример #2
0
        public AttributeEntries GetAttributeEntries(XmlSchemaAttributeGroup attributeGroup)
        {
            var attributeFinder = new AttributeFinder(this);

            attributeFinder.Traverse(attributeGroup);
            return(attributeFinder.GetAttributeEntries());
        }
Пример #3
0
        public AttributeEntries GetAttributeEntries(XmlSchemaElement element)
        {
            var attributeFinder = new AttributeFinder(this);

            attributeFinder.Traverse(element);
            return(attributeFinder.GetAttributeEntries());
        }
Пример #4
0
 public AttributeEntries GetAttributeEntries(XmlSchemaComplexType complexType)
 {
     var attributeFinder = new AttributeFinder(this);
     attributeFinder.Traverse(complexType);
     return attributeFinder.GetAttributeEntries();
 }
Пример #5
0
 public AttributeEntries GetAttributeEntries(XmlSchemaAttributeGroup attributeGroup)
 {
     var attributeFinder = new AttributeFinder(this);
     attributeFinder.Traverse(attributeGroup);
     return attributeFinder.GetAttributeEntries();
 }
Пример #6
0
 public AttributeEntries GetAttributeEntries(XmlSchemaElement element)
 {
     var attributeFinder = new AttributeFinder(this);
     attributeFinder.Traverse(element);
     return attributeFinder.GetAttributeEntries();
 }