Aqueduct.Configuration.ReadOnlySettings.this C# (CSharp) Method

this() public method

public this ( string key ) : Setting
key string
return Setting
        public Setting this [string key]
        {
            get { return _internalStorage [key]; }
            set { throw new NotSupportedException ("Settings cannot be added to a readonly list"); }
        }