Microsoft.AspNet.SignalR.Hubs.StateChangeTracker.this C# (CSharp) Method

this() public method

public this ( string key ) : object
key string
return object
        public object this[string key]
        {
            get
            {
                object result;
                _values.TryGetValue(key, out result);
                return DynamicDictionary.Wrap(result);
            }
            set
            {
                if (!_oldValues.ContainsKey(key))
                {
                    object oldValue;
                    _values.TryGetValue(key, out oldValue);
                    _oldValues[key] = oldValue;
                }

                _values[key] = value;
            }
        }