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

CleanupAttribute() private method

private CleanupAttribute ( XmlSchemaAttribute attribute ) : void
attribute XmlSchemaAttribute
return void
        private void CleanupAttribute(XmlSchemaAttribute attribute) {
            if (attribute.SchemaType != null) {
                CleanupSimpleType((XmlSchemaSimpleType)attribute.SchemaType);
            }
            attribute.AttDef = null;
        }
        
Compiler