AjaxControlToolkit.ScriptControlBase.LoadPostData C# (CSharp) Method

LoadPostData() protected method

protected LoadPostData ( string postDataKey, NameValueCollection postCollection ) : bool
postDataKey string
postCollection System.Collections.Specialized.NameValueCollection
return bool
        protected virtual bool LoadPostData(string postDataKey, NameValueCollection postCollection)
        {
            if(SupportsClientState) {
                var clientState = postCollection[ClientStateFieldID];
                if(!String.IsNullOrEmpty(clientState))
                    LoadClientState(clientState);
            }
            return false;
        }