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; //配置文件名称 /// /// 系统安装目录 /// public static string StartupPath { get { return m_StartupPath; } set { m_StartupPath = value; } } /// /// 日志文件软开关控制 True进行记录 False不进行记录 /// public static bool LogControl { get { return m_LogControl; } set { m_LogControl = value; } } /// /// 记录日志信息的文件名称 /// public static string LogFileName { get { return m_LogFileName; } set { m_LogFileName = value; } } /// /// 配置文件名称 /// public static string ConfigFileName { get { return m_ConfigFileName; } set { m_ConfigFileName = value; } } } }