workpathinfo.cs

来自「破解的飞信源代码」· CS 代码 · 共 79 行

CS
79
字号
namespace Imps.Client.Pc
{
    using System;

    public class WorkPathInfo
    {
        private string _clientUpdateFile = @"LiveUpdate\FetionUpdate.exe";
        private string _DlStatInfoFile = @"LiveUpdate\DLState.ini";
        private string _DownloadDir = @"LiveUpdate\Download\";
        private string _LogFile = @"LiveUpdate\LiveUpdate.log";
        private string _SvrInfoFile = @"LiveUpdate\ServerVersion.xml";

        internal WorkPathInfo()
        {
        }

        public string ClientUpdateFile
        {
            get
            {
                return this._clientUpdateFile;
            }
            set
            {
                this._clientUpdateFile = value;
            }
        }

        public string DlStatInfoFile
        {
            get
            {
                return this._DlStatInfoFile;
            }
            set
            {
                this._DlStatInfoFile = value;
            }
        }

        public string DownloadDir
        {
            get
            {
                return this._DownloadDir;
            }
            set
            {
                this._DownloadDir = value;
            }
        }

        public string LogFile
        {
            get
            {
                return this._LogFile;
            }
            set
            {
                this._LogFile = value;
            }
        }

        public string SvrInfoFile
        {
            get
            {
                return this._SvrInfoFile;
            }
            set
            {
                this._SvrInfoFile = value;
            }
        }
    }
}

⌨️ 快捷键说明

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