internal void GenerateSchemaGraph(XmlSchemas schemas)
 {
     ArrayList items = new SchemaGraph(this.Graph, schemas).GetItems();
     for (int i = 0; i < items.Count; i++)
     {
         this.GetHash((XmlSchemaObject) items[i]);
     }
 }
        internal void GenerateSchemaGraph(XmlSchemas schemas)
        {
            ArrayList items = new SchemaGraph(this.Graph, schemas).GetItems();

            for (int i = 0; i < items.Count; i++)
            {
                this.GetHash((XmlSchemaObject)items[i]);
            }
        }
예제 #3
0
        internal void GenerateSchemaGraph(XmlSchemas schemas)
        {
            SchemaGraph graph = new SchemaGraph(Graph, schemas);
            ArrayList   items = graph.GetItems();

            for (int i = 0; i < items.Count; i++)
            {
                GetHash((XmlSchemaObject)items[i]);
            }
        }
예제 #4
0
        internal void GenerateSchemaGraph(XmlSchemas schemas) {
            SchemaGraph graph = new SchemaGraph(Graph, schemas);
            ArrayList items = graph.GetItems();

            for (int i = 0; i < items.Count; i++) {
                GetHash((XmlSchemaObject)items[i]);
            }
        }