ATMLSchemaLibrary.managers.SchemaManager.ExtractAttributes C# (CSharp) Method

ExtractAttributes() public static method

public static ExtractAttributes ( XmlSchemaComplexContentExtension cce, XmlSchemaObject>.Dictionary xmlSchemaObjects ) : void
cce System.Xml.Schema.XmlSchemaComplexContentExtension
xmlSchemaObjects XmlSchemaObject>.Dictionary
return void
        public static void ExtractAttributes( XmlSchemaComplexContentExtension cce,
            Dictionary<string, XmlSchemaObject> xmlSchemaObjects)
        {
            if (cce != null)
            {
                XmlSchemaObjectCollection attributes = cce.Attributes;
                LoadAttributes( xmlSchemaObjects, attributes );
            }
        }

Same methods

SchemaManager::ExtractAttributes ( XmlSchemaComplexType cce, XmlSchemaObject>.Dictionary xmlSchemaObjects ) : void