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

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

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

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