예제 #1
0
        public TOutput RenderUrl <TOutput> (string url, IDocGenerator <TOutput> generator, out Node node)
        {
            node = null;
            string     internalId = null;
            HelpSource hs         = GetHelpSourceAndIdForUrl(url, out internalId, out node);

            return(generator.Generate(hs, internalId));
        }
예제 #2
0
        public TOutput RenderUrl <TOutput> (string url, IDocGenerator <TOutput> generator, out Node node, HelpSource hintSource = null)
        {
            node = null;
            string internalId = null;
            Dictionary <string, string> context = null;
            HelpSource hs = GetHelpSourceAndIdForUrl(url, hintSource, out internalId, out context, out node);

            return(generator.Generate(hs, internalId, context));
        }