Adf.Base.State.NullStateProvider.this C# (CSharp) Method

this() public method

Gets or sets the value corresponding to the specified key object in the empty state.
/// The property is yet to be implemented. ///
public this ( object o ) : object
o object The key object for which the corresponding value is get or set.
return object
        public object this[object o]
        {
            get { throw new NotImplementedException(); }
            set { throw new NotImplementedException(); }
        }

Same methods

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