ATMLSchemaLibrary.managers.SchemaManager.GetAttributeGroup C# (CSharp) Method

GetAttributeGroup() public static method

public static GetAttributeGroup ( String targetNamespace, String name, XmlSchemaAttributeGroup &attributeGroup ) : bool
targetNamespace String
name String
attributeGroup System.Xml.Schema.XmlSchemaAttributeGroup
return 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;
        }