Aqueduct.Configuration.ReadOnlySettings.this C# (CSharp) Метод

this() публичный Метод

public this ( string key ) : Setting
key string
Результат Setting
        public Setting this [string key]
        {
            get { return _internalStorage [key]; }
            set { throw new NotSupportedException ("Settings cannot be added to a readonly list"); }
        }