iimpslogger.cs

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

CS
37
字号
namespace Imps.Client.Utils
{
    using System;

    public interface IImpsLogger
    {
        void CreateLogFile();
        void SendToServer(Imps.Client.Utils.LogType logType);
        void WriteLine(string category, int infoLevel, string summary, string detail, string ext);

        bool IsLogBiz { get; set; }

        bool IsLogConnection { get; set; }

        bool IsLogException { get; set; }

        bool IsLogInstall { get; set; }

        bool IsLogLiveUpdate { get; set; }

        bool IsLogLogin { get; set; }

        bool IsLogSipc { get; set; }

        string LogFolder { get; set; }

        Imps.Client.Utils.LogType LogType { get; set; }

        int MaxLogNo { get; set; }

        string ServerUrl { get; set; }

        int ThresholdLevel { get; set; }
    }
}

⌨️ 快捷键说明

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