⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 forumrsswriter.cs

📁 解压即可使用
💻 CS
字号:
//------------------------------------------------------------------------------
// <copyright company="Telligent Systems">
//     Copyright (c) Telligent Systems Corporation.  All rights reserved.
// </copyright> 
//------------------------------------------------------------------------------

using System;
using System.Collections;
using CommunityServer.Components;
using CommunityServer.Configuration;

namespace CommunityServer.Discussions.Components
{
	/// <summary>
	/// Summary description for ForumRssWriter.
	/// </summary>
    public class ForumRssWriter : BaseForumsRssWriter
    {
        protected int ForumID;
        public ForumRssWriter(ArrayList posts, Section s, string baseUrl):base(posts,s,baseUrl)
        {
		        ForumID = s.SectionID;
        }

        /// <summary>
        /// Output the header contents of the channel element.
        /// </summary>
        protected override void WriteChannel()
        {
            BuildChannel(ForumUrls.Instance().Forum(ForumID),CurrentSection.Description,CSConfiguration.GetConfig().DefaultLanguage );
        }

        protected override bool AllowComments
        {
            get
            {
                return false;
            }
        }

    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -