예제 #1
0
        public static IHtmlString BreadCrumb(this ApiServices context, DocumentedMethod method)
        {
            var breadcrumb = new Breadcrumb();

            breadcrumb.AppendApiRoot();
            breadcrumb.AppendNamespaces(context, method.Type.Namespace, true);
            breadcrumb.AppendType(context, method.Type, true);
            breadcrumb.AppendMethod(context, method);
            return(breadcrumb.Render());
        }