Adf.Web.State.WebStateProvider.this C# (CSharp) Method

this() public method

Gets or sets the object in the Session corresponding to the specified key object.
public this ( object o ) : object
o object The key object for which the corresponding value is to get or set.
return object
        public object this[object o]
        {
            get
            {
                if (o == null)
                    return null;

                return this[o.ToString()];
            }

            set
            {
                if (o != null)
                    this[o.ToString()] = value;
            }
        }

Same methods

WebStateProvider::this ( object o, string key ) : object
WebStateProvider::this ( string key ) : object
WebStateProvider