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

CleanupAttributes() private method

private CleanupAttributes ( XmlSchemaObjectCollection attributes ) : void
attributes XmlSchemaObjectCollection
return void
        private void CleanupAttributes(XmlSchemaObjectCollection attributes) {
            foreach (XmlSchemaObject obj in attributes) {
                if (obj is XmlSchemaAttribute) {
                    CleanupAttribute((XmlSchemaAttribute)obj);
                }
            }        
        }
Compiler