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

GetComplexType() public static method

public static GetComplexType ( String targetNamespace, String typeName, XmlSchemaComplexType &complexType ) : bool
targetNamespace String
typeName String
complexType System.Xml.Schema.XmlSchemaComplexType
return bool
        public static bool GetComplexType( String targetNamespace, String typeName, out XmlSchemaComplexType complexType )
        {
            complexType = null;
            bool hasType = Instance._complexTypes.ContainsKey( targetNamespace + ":" + typeName );
            if (hasType)
                complexType = Instance._complexTypes[targetNamespace + ":" + typeName];
            return hasType;
        }