Ultralight.StompMessage.this C# (CSharp) Method

this() public method

Gets or sets the specified header attribute.
public this ( string header ) : string
header string
return string
        public string this[string header]
        {
            get { return _headers.ContainsKey(header) ? _headers[header] : string.Empty; }
            set { _headers[header] = value; }
        }