System.Xml.Schema.Compiler.CleanupAttributes C# (CSharp) Méthode

CleanupAttributes() private méthode

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