System.Xml.Serialization.SchemaGraph.SchemaGraph C# (CSharp) Method

SchemaGraph() private method

private SchemaGraph ( Hashtable scope, System.Xml.Serialization.XmlSchemas schemas ) : System
scope System.Collections.Hashtable
schemas System.Xml.Serialization.XmlSchemas
return System
        internal SchemaGraph(Hashtable scope, XmlSchemas schemas) {
            this.scope = scope;
            schemas.Compile(null, false);
            this.schemas = schemas;
            items = 0;
            foreach(XmlSchema s in schemas) {
                items += s.Items.Count;
                foreach (XmlSchemaObject item in s.Items) {
                    Depends(item);
                }
            }
        }