コード例 #1
0
ファイル: Sitemap.cs プロジェクト: sigcms/Seeger
 public Sitemap(string id, ISitemapContent content)
 {
     Id = id;
     Content = content;
 }
コード例 #2
0
ファイル: Sitemap.ashx.cs プロジェクト: sigcms/Seeger
 static void RenderSitemap(ISitemapContent content, SitemapContext context, HttpContext httpContext)
 {
     var urls = content.GetUrls(context);
     SitemapSerializer.Serialize(urls).Save(httpContext.Response.Output);
 }