provisionbizcode.cs

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

CS
26
字号
namespace Imps.Client.Core
{
    using System;
    using System.Net;

    public class ProvisionBizCode
    {
        public const int GetAgreement = 0x44e;
        public const int GetCertPic = 0x44d;
        public const int GetFeeInfo = 0x450;
        public const int InitSysCfg = 0x44c;
        public const int LoginToSSI = 0x453;
        public const int RefreshSysCfg = 0x452;
        public const int RetriveOldProfile = 0x454;
        public const int SendSmsCertCode = 0x44f;
        public const int SetNewProfile = 0x455;
        public const int Subscribe = 0x451;

        public static string GetErrorCode(int bizCode, WebException wEx)
        {
            return string.Format("{0}{1}", bizCode, ExceptionHandler.HandleWebException(wEx));
        }
    }
}

⌨️ 快捷键说明

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