⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sipconnectionoption.cs

📁 破解的飞信源代码
💻 CS
字号:
namespace Imps.Client.CommLayer.Common
{
    using System;

    [Serializable]
    internal abstract class SipConnectionOption
    {
        private int _SendFaildDelay = 3;
        private int _timeout = 90;

        public int SendFaildDelay
        {
            get
            {
                return this._SendFaildDelay;
            }
            set
            {
                this._SendFaildDelay = value;
            }
        }

        public int Timeout
        {
            get
            {
                return this._timeout;
            }
            set
            {
                if (value <= 0)
                {
                    throw new ArgumentException("不接收小于或等于零的超时时间");
                }
                this._timeout = value;
            }
        }
    }
}

⌨️ 快捷键说明

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