public static IHtmlString BreadCrumb(this ApiServices context, DocumentedType type)
        {
            var breadcrumb = new Breadcrumb();

            breadcrumb.AppendApiRoot();
            breadcrumb.AppendNamespaces(context, type.Namespace, true);
            breadcrumb.AppendType(context, type, false);
            return(breadcrumb.Render());
        }