webconfigurationsettings.cs
来自「1、用SQL查询器打开install目录下的dooogo.sql运行之后创建数据」· CS 代码 · 共 67 行
CS
67 行
//Copyright (C) 2006 dooogo.com
//Author:benben
//www.aspxclub.com
using System;
using System.Xml.Serialization;
using System.Configuration;
using Club.Framework.Providers;
namespace Club.Framework.Configuration
{
/// <summary>
/// 网站配置类
/// </summary>
[Serializable]
public class WebConfigurationSettings
{
public WebConfigurationSettings()
{
}
public static WebConfigurationSettings Instance()
{
return ((WebConfigurationSettings)ConfigurationSettings.GetConfig("WebConfigurationSettings"));
}
private WebProviders _webProviders;
public WebProviders WebProviders
{
get {return this._webProviders;}
set {this._webProviders = value;}
}
private string _aggregateTitle;
public string AggregateTitle
{
get{return _aggregateTitle;}
set{_aggregateTitle=value;}
}
private int _cookieExpires;
public int CookieExpires
{
get{return this._cookieExpires;}
set{this._cookieExpires=value;}
}
private int _registerState;
public int RegisterState
{
get{return this._registerState;}
set{this._registerState=value;}
}
private bool upFileIsMakeDir;
public bool UpFileIsMakeDir
{
get{return this.upFileIsMakeDir;}
set{this.upFileIsMakeDir=value;}
}
private int upMusicMaxLength;
public int UpMusicMaxLength
{
get{return this.upMusicMaxLength;}
set{this.upMusicMaxLength=value;}
}
private int upImageMaxLength;
public int UpImageMaxLength
{
get{return this.upImageMaxLength;}
set{this.upImageMaxLength=value;}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?