Stumps.ReadOnlyHttpHeaders.this C# (CSharp) Метод

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

Gets or sets the System.String value for the specified header name.
Thrown when altering the value of a header.
public this ( string headerName ) : string
headerName string The name of the header.
Результат string
        public override string this[string headerName]
        {
            get { return base[headerName]; }
            set { throw new NotSupportedException(); }
        }