Alba.Jaml.MSInternal.XamlContext.ResolveXamlType C# (CSharp) Method

ResolveXamlType() private method

private ResolveXamlType ( string qName, bool skipVisibilityCheck ) : XamlType
qName string
skipVisibilityCheck bool
return XamlType
        internal XamlType ResolveXamlType (string qName, bool skipVisibilityCheck)
        {
            string str;
            XamlTypeName typeName = XamlTypeName.ParseInternal(qName, this.ResolvePrefixCachedDelegate, out str);
            if (typeName == null) {
                throw new XamlParseException(str);
            }
            return this.GetXamlType(typeName, false, skipVisibilityCheck);
        }