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

📄 bufferpoolconfigurationelement.cs

📁 破解的飞信源代码
💻 CS
字号:
namespace NCindy.Util
{
    using System;
    using System.Configuration;

    internal sealed class BufferPoolConfigurationElement : ConfigurationElement
    {
        [ConfigurationProperty("bufferCapacity", IsKey=true, IsRequired=true)]
        public string BufferCapacity
        {
            get
            {
                return (string) base["bufferCapacity"];
            }
            set
            {
                base["bufferCapacity"] = value;
            }
        }

        [ConfigurationProperty("initialElementsCount", IsRequired=true)]
        public string InitialElementsCount
        {
            get
            {
                return (string) base["initialElementsCount"];
            }
            set
            {
                base["initialElementsCount"] = value;
            }
        }

        [ConfigurationProperty("maxElementsCount", IsRequired=true)]
        public string MaxElementsCount
        {
            get
            {
                return (string) base["maxElementsCount"];
            }
            set
            {
                base["maxElementsCount"] = value;
            }
        }
    }
}

⌨️ 快捷键说明

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