System.Xml.Schema.Compiler.CleanupAttributeGroup C# (CSharp) Method

CleanupAttributeGroup() private method

private CleanupAttributeGroup ( XmlSchemaAttributeGroup attributeGroup ) : void
attributeGroup XmlSchemaAttributeGroup
return void
        private void CleanupAttributeGroup(XmlSchemaAttributeGroup attributeGroup) {
            CleanupAttributes(attributeGroup.Attributes);
            attributeGroup.AttributeUses.Clear();
            attributeGroup.AttributeWildcard = null;
            if (attributeGroup.Redefined != null) {
                CleanupAttributeGroup(attributeGroup.Redefined);
            }
        }
        
Compiler