ATMLSchemaLibrary.managers.SchemaManager.GetAttributeGroup C# (CSharp) Метод

GetAttributeGroup() публичный статический Метод

public static GetAttributeGroup ( String targetNamespace, String name, XmlSchemaAttributeGroup &attributeGroup ) : bool
targetNamespace String
name String
attributeGroup System.Xml.Schema.XmlSchemaAttributeGroup
Результат bool
        public static bool GetAttributeGroup( String targetNamespace, String name,
            out XmlSchemaAttributeGroup attributeGroup)
        {
            bool found = false;
            attributeGroup = null;
            if (Instance._attributeGroups.ContainsKey( targetNamespace + ":" + name ))
            {
                found = true;
                attributeGroup = Instance._attributeGroups[targetNamespace + ":" + name];
            }
            return found;
        }