| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Dongke.IBOSS.PRD.WCF.Hosting
- {
- public static class ConfigConst
- {
- private static string m_StartupPath; //文件安装路径
- private static bool m_LogControl; //日志文件软开关控制 True进行记录 False不进行记录
- private static string m_LogFileName; //记录日志信息的文件名
- private static string m_ConfigFileName; //配置文件名称
- /// <summary>
- /// 系统安装目录
- /// </summary>
- public static string StartupPath
- {
- get { return m_StartupPath; }
- set { m_StartupPath = value; }
- }
- /// <summary>
- /// 日志文件软开关控制 True进行记录 False不进行记录
- /// </summary>
- public static bool LogControl
- {
- get { return m_LogControl; }
- set { m_LogControl = value; }
- }
- /// <summary>
- /// 记录日志信息的文件名称
- /// </summary>
- public static string LogFileName
- {
- get { return m_LogFileName; }
- set { m_LogFileName = value; }
- }
- /// <summary>
- /// 配置文件名称
- /// </summary>
- public static string ConfigFileName
- {
- get { return m_ConfigFileName; }
- set { m_ConfigFileName = value; }
- }
- }
- }
|