Fleck.WebSocketHttpRequest.this C# (CSharp) Method

this() public method

public this ( string name ) : string
name string
return string
        public string this[string name]
        {
            get
            {
                string value;
                return _headers.TryGetValue(name, out value) ? value : default(string);
            }
        }
WebSocketHttpRequest