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

GetXamlType() private method

private GetXamlType ( string ns, string name, IList typeArguments ) : XamlType
ns string
name string
typeArguments IList
return XamlType
        private XamlType GetXamlType (string ns, string name, IList<XamlType> typeArguments)
        {
            XamlType[] array = new XamlType[typeArguments.Count];
            typeArguments.CopyTo(array, 0);
            XamlType type = this._schemaContext.PublicMorozov_GetXamlType(ns, name, array);
//            if ((type != null) && !type.IsVisibleTo(this.LocalAssembly)) {
//                type = null;
//            }
            return type;
        }

Same methods

XamlContext::GetXamlType ( XamlName typeName ) : XamlType
XamlContext::GetXamlType ( XamlName typeName, bool returnUnknownTypesOnFailure ) : XamlType
XamlContext::GetXamlType ( XamlTypeName typeName ) : XamlType
XamlContext::GetXamlType ( XamlTypeName typeName, bool returnUnknownTypesOnFailure ) : XamlType
XamlContext::GetXamlType ( XamlTypeName typeName, bool returnUnknownTypesOnFailure, bool skipVisibilityCheck ) : XamlType