System.Data.XSDSchema.HandleRelations C# (CSharp) Метод

HandleRelations() приватный Метод

private HandleRelations ( XmlSchemaAnnotation ann, bool fNested ) : void
ann System.Xml.Schema.XmlSchemaAnnotation
fNested bool
Результат void
        private void HandleRelations(XmlSchemaAnnotation ann, bool fNested)
        {
            foreach (object __items in ann.Items)
                if (__items is XmlSchemaAppInfo)
                {
                    XmlNode[] relations = ((XmlSchemaAppInfo)__items).Markup;
                    for (int i = 0; i < relations.Length; i++)
                        if (FEqualIdentity(relations[i], Keywords.MSD_RELATION, Keywords.MSDNS))
                            HandleRelation((XmlElement)relations[i], fNested);
                }
        }