BExIS.Xml.Helpers.Mapping.XmlSchemaManager.addMetadataAttributesToMetadataCompoundAttribute C# (CSharp) Метод

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

private addMetadataAttributesToMetadataCompoundAttribute ( MetadataCompoundAttribute compoundAttribute, List elements, string internalXPath, string externalXPath ) : MetadataCompoundAttribute
compoundAttribute BExIS.Dlm.Entities.MetadataStructure.MetadataCompoundAttribute
elements List
internalXPath string
externalXPath string
Результат BExIS.Dlm.Entities.MetadataStructure.MetadataCompoundAttribute
        private MetadataCompoundAttribute addMetadataAttributesToMetadataCompoundAttribute(MetadataCompoundAttribute compoundAttribute, List<XmlSchemaElement> elements, string internalXPath, string externalXPath)
        {
            for (int i = 0; i < elements.Count(); i++)
            {
                addMetadataAttributeToMetadataCompoundAttribute(compoundAttribute, elements.ElementAt(i), internalXPath, externalXPath);
            }

            return compoundAttribute;
        }